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) => {