From 6218b536f9413ad2ce466b37f8acb9ba241446e5 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 17 Jul 2025 16:23:44 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E8=B4=A8=E6=8E=A7=E5=A4=8D=E6=A0=B8?= =?UTF-8?q?=E3=80=91A=E9=A2=86=E5=8F=96=E8=B4=A8=E6=8E=A7=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=90=8E=E6=8C=87=E6=B4=BE=E7=BB=99B=EF=BC=8CA?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E6=9B=BF=E6=8D=A2=E6=8C=89=E9=92=AE=E5=B0=86?= =?UTF-8?q?=E6=AD=A4=E4=BB=BB=E5=8A=A1=E5=AE=8C=E6=88=90=EF=BC=8CB?= =?UTF-8?q?=E5=B7=B2=E8=BF=9B=E5=85=A5=E8=B4=A8=E6=8E=A7=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E6=8C=87=E6=B4=BE=E6=97=B6=E6=97=A0=E5=93=8D?= =?UTF-8?q?=E5=BA=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../visit/qc-check/components/qualityAssurance.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue b/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue index 89c3b1b6..be5bff93 100644 --- a/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue +++ b/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue @@ -1291,8 +1291,17 @@ export default { let res = await replaceQCTaskActionUser(this.data.TrialId, this.data.Id, this.assignForm) if (res.IsSuccess) { this.$emit('getList') - this.assignObj.visible = true + this.assignObj.visible = false this.$emit("close") + } else { + if (res.Code === 5 && res.ErrorMessage) { + this.$confirm(res.ErrorMessage, { + type: 'warning', + showCancelButton: false, + callback: (action) => { }, + }) + this.$emit('getList') + } } } catch (err) { console.log(err)