1
continuous-integration/drone/push Build is passing Details

uat_us
wangxiaoshuang 2024-11-29 09:02:10 +08:00
parent 5b90b2d155
commit 2d91053668
1 changed files with 5 additions and 1 deletions

View File

@ -124,7 +124,11 @@ export default {
this.uploadFile(param.file)
}
} else {
this.$alert(`Must be in ${this.accept} format`)
let str = this.accept.join(', ')
let message = this.$t(
'trials:readingUnit:qsList:message:imageFormat'
).replace('xxx', str)
this.$alert(message)
}
},
async uploadFile(file) {