From 4b32c290e7448790fad700d0742e55a5901e90e3 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 24 Jul 2025 09:52:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=8D=E6=A0=B8=E9=80=9A=E8=BF=87=E6=97=B6?= =?UTF-8?q?=E9=AA=8C=E8=AF=81=E6=98=AF=E5=90=A6=E6=9C=89=E5=8E=86=E5=8F=B2?= =?UTF-8?q?=E8=B4=A8=E7=96=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../visit/qc-check/components/qualityAssurance.vue | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) 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 680c0f65..1415839a 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 @@ -830,7 +830,7 @@ {{ $t('trials:audit:button:save') }} - + {{ $t('trials:audit:button:question') }} @@ -1797,10 +1797,14 @@ export default { if (!isVerify) { return this.loading = false } - this.IsSecondPass = true - const { ReviewImageQualityControlQuestion } = const_.processSignature - this.signCode = ReviewImageQualityControlQuestion - this.signVisible = true + let res = await verifyCanQCPassedOrFailed(this.trialId, this.data.Id) + this.loading = false + if (res.IsSuccess) { + this.IsSecondPass = true + const { ReviewImageQualityControlQuestion } = const_.processSignature + this.signCode = ReviewImageQualityControlQuestion + this.signVisible = true + } } catch (err) { this.loading = false }