RECIST1.1-BM首次进入阅片提醒语更改
parent
0718008904
commit
41c24bf062
|
@ -478,7 +478,9 @@ export default {
|
|||
})
|
||||
},
|
||||
async handleConfirmReminder() {
|
||||
let i = this.$d.CriterionType.findIndex(i=>i.value === parseInt(this.criterionType))
|
||||
let criterionType = parseInt(this.criterionType)
|
||||
criterionType = criterionType === 17 ? 1 : criterionType
|
||||
let i = this.$d.CriterionType.findIndex(i=>i.value === criterionType)
|
||||
if (i === -1) return
|
||||
let criterionName = this.$d.CriterionType[i].label
|
||||
let msg = this.$t('trials:reading:criterion:message').replace('xxx', criterionName)
|
||||
|
|
Loading…
Reference in New Issue