Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/hir_web
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
aef3c8e924
|
@ -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