From 36ea56722917b133d8b3a810201e91a69e7ad179 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 17 Jul 2025 14:20:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BD=B1=E5=83=8F=E8=B4=A8=E6=8E=A7=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E9=85=8D=E7=BD=AE=E6=9C=AA=E7=A1=AE=E8=AE=A4=E6=97=B6?= =?UTF-8?q?=E7=A6=81=E6=AD=A2=E8=B4=A8=E6=8E=A7=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/trials/trials-panel/visit/qc-check/index.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/views/trials/trials-panel/visit/qc-check/index.vue b/src/views/trials/trials-panel/visit/qc-check/index.vue index 200b0618..f82f0d1e 100644 --- a/src/views/trials/trials-panel/visit/qc-check/index.vue +++ b/src/views/trials/trials-panel/visit/qc-check/index.vue @@ -813,11 +813,13 @@ export default { }, // 复审 reviewTask(row) { + if (!row.IsQCQuestionConfirmed) return this.$alert(this.$t("trials:qcCheck:alert:questionNoConfirm")) this.rowData = { ...row } this.qcVisible = true }, // 初审 handlePrimaryQC(row) { + if (!row.IsQCQuestionConfirmed) return this.$alert(this.$t("trials:qcCheck:alert:questionNoConfirm")) this.loading = true isQCCanOpt(row.Id) .then((res) => { @@ -836,6 +838,7 @@ export default { }, // 复审 handleSecondaryQC(row) { + if (!row.IsQCQuestionConfirmed) return this.$alert(this.$t("trials:qcCheck:alert:questionNoConfirm")) this.loading = true isQCCanOpt(row.Id) .then((res) => {