影像质控问题配置未确认时禁止质控操作
continuous-integration/drone/push Build encountered an error Details

uat
wangxiaoshuang 2025-07-17 14:41:44 +08:00
parent 36ea567229
commit 57bec076b7
1 changed files with 3 additions and 3 deletions

View File

@ -813,13 +813,13 @@ export default {
}, },
// //
reviewTask(row) { 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.rowData = { ...row }
this.qcVisible = true this.qcVisible = true
}, },
// //
handlePrimaryQC(row) { 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 this.loading = true
isQCCanOpt(row.Id) isQCCanOpt(row.Id)
.then((res) => { .then((res) => {
@ -838,7 +838,7 @@ export default {
}, },
// //
handleSecondaryQC(row) { 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 this.loading = true
isQCCanOpt(row.Id) isQCCanOpt(row.Id)
.then((res) => { .then((res) => {