From 8122464fbb375442fce288c8b04e51419a60b5c5 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Fri, 19 Dec 2025 16:27:43 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E9=A1=B5=E9=9D=A2=E5=88=B7=E6=96=B0?= =?UTF-8?q?=E3=80=91=E9=9D=B6=E6=AE=B5=E6=A0=87=E8=AE=B0=E7=AD=89=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=85=B3=E9=97=AD=E6=97=B6=EF=BC=8C=E9=9C=80=E8=A6=81?= =?UTF-8?q?=E5=88=B7=E6=96=B0=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading-task/components/TargetSection.vue | 12 ++++++++++++ .../trials-panel/reading/reading-task/index.vue | 5 +++++ 2 files changed, 17 insertions(+) diff --git a/src/views/trials/trials-panel/reading/reading-task/components/TargetSection.vue b/src/views/trials/trials-panel/reading/reading-task/components/TargetSection.vue index 091c2d21..442c57e5 100644 --- a/src/views/trials/trials-panel/reading/reading-task/components/TargetSection.vue +++ b/src/views/trials/trials-panel/reading/reading-task/components/TargetSection.vue @@ -139,6 +139,18 @@ export default { uploadStatus: 'upload', } }, + watch: { + downloadImageVisible(v) { + if (!v) { + this.getList() + } + }, + uploadImageVisible(v) { + if (!v) { + this.getList() + } + } + }, mounted() { this.getList() }, diff --git a/src/views/trials/trials-panel/reading/reading-task/index.vue b/src/views/trials/trials-panel/reading/reading-task/index.vue index 8b844be0..aa9ff4e0 100644 --- a/src/views/trials/trials-panel/reading/reading-task/index.vue +++ b/src/views/trials/trials-panel/reading/reading-task/index.vue @@ -235,6 +235,11 @@ export default { this.getList() } }, + TargetSection_visible(v) { + if (!v) { + this.getList() + } + } }, mounted() { window.addEventListener('message', this.receiveMsg)