Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/hir_web
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2024-05-11 13:33:23 +08:00
commit aef3c8e924
1 changed files with 3 additions and 1 deletions

View File

@ -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)