影像质控问题配置未确认时禁止质控操作
continuous-integration/drone/push Build encountered an error
Details
continuous-integration/drone/push Build encountered an error
Details
parent
e9dd669d48
commit
36ea567229
|
@ -813,11 +813,13 @@ export default {
|
||||||
},
|
},
|
||||||
// 复审
|
// 复审
|
||||||
reviewTask(row) {
|
reviewTask(row) {
|
||||||
|
if (!row.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"))
|
||||||
this.loading = true
|
this.loading = true
|
||||||
isQCCanOpt(row.Id)
|
isQCCanOpt(row.Id)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
@ -836,6 +838,7 @@ export default {
|
||||||
},
|
},
|
||||||
// 复审
|
// 复审
|
||||||
handleSecondaryQC(row) {
|
handleSecondaryQC(row) {
|
||||||
|
if (!row.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) => {
|
||||||
|
|
Loading…
Reference in New Issue