From 57bec076b7196347ef38f3673f51b297de7aa43b Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 17 Jul 2025 14:41:44 +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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 f82f0d1e..40998e2c 100644 --- a/src/views/trials/trials-panel/visit/qc-check/index.vue +++ b/src/views/trials/trials-panel/visit/qc-check/index.vue @@ -813,13 +813,13 @@ export default { }, // 复审 reviewTask(row) { - if (!row.IsQCQuestionConfirmed) return this.$alert(this.$t("trials:qcCheck:alert:questionNoConfirm")) + if (!this.OtherInfo.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")) + if (!this.OtherInfo.IsQCQuestionConfirmed) return this.$alert(this.$t("trials:qcCheck:alert:questionNoConfirm")) this.loading = true isQCCanOpt(row.Id) .then((res) => { @@ -838,7 +838,7 @@ export default { }, // 复审 handleSecondaryQC(row) { - if (!row.IsQCQuestionConfirmed) return this.$alert(this.$t("trials:qcCheck:alert:questionNoConfirm")) + if (!this.OtherInfo.IsQCQuestionConfirmed) return this.$alert(this.$t("trials:qcCheck:alert:questionNoConfirm")) this.loading = true isQCCanOpt(row.Id) .then((res) => {