非dicom阅片更改比例尺弹框去除取消按钮
continuous-integration/drone/push Build is passing Details

wangxiaoshuang 2026-02-02 15:02:41 +08:00
parent 46b532b858
commit e35f6c5471
1 changed files with 12 additions and 2 deletions

View File

@ -1417,7 +1417,12 @@ export default {
this.saveCustomAnnotation(annotation)
} else {
await this.$confirm(
this.$t('trials:trials-list:table:allQuestionChange')
this.$t('trials:trials-list:table:allQuestionChange'), '', {
showClose: false,
showCancelButton: false,
closeOnClickModal: false,
closeOnPressEscape: false
}
).then(() => {
this.saveCustomAnnotation(annotation, 1)
})
@ -1866,7 +1871,12 @@ export default {
this.saveCustomAnnotation(annotation)
} else {
this.$confirm(
this.$t('trials:trials-list:table:allQuestionChange')
this.$t('trials:trials-list:table:allQuestionChange'), '', {
showClose: false,
showCancelButton: false,
closeOnClickModal: false,
closeOnPressEscape: false
}
).then(() => {
this.saveCustomAnnotation(annotation, 1)
})