病灶保存提示语优化
parent
49d3247f27
commit
83c441b7de
|
@ -239,7 +239,7 @@ export default {
|
|||
// 是否有标记未保存
|
||||
var existUnSave = this.checkAnnotationStatus(this.questions)
|
||||
if (existUnSave) {
|
||||
this.$alert(this.$t('trials:lugano:message:saveWarning1'))
|
||||
this.$alert(this.$t('trials:lugano:message:saveWarning1'),this.$t('trials:lugano:fusionDialog:warning'))
|
||||
return
|
||||
}
|
||||
// 肝脏血池SUVmax
|
||||
|
|
|
@ -258,7 +258,7 @@ export default {
|
|||
// 是否有标记未保存
|
||||
var existUnSave = this.checkAnnotationStatus(this.questions)
|
||||
if (existUnSave) {
|
||||
this.$alert(this.$t('trials:lugano:message:saveWarning'))
|
||||
this.$alert(this.$t('trials:lugano:message:saveWarning'),this.$t('trials:lugano:fusionDialog:warning'))
|
||||
return
|
||||
}
|
||||
var currentSpleenStatus = this.questionForm[this.spleenStatusId]
|
||||
|
@ -441,8 +441,9 @@ export default {
|
|||
var idx = this.measurements.findIndex(i => i.QuestionId === Id)
|
||||
if (idx === -1) return
|
||||
this.$set(this.questionForm, Id, '')
|
||||
if (this.measurements[idx].QuestionType === 48) {
|
||||
if (obj.QuestionType === 60 || obj.QuestionType === 61) {
|
||||
this.$set(this.questionForm, this.spleenStatusId, '')
|
||||
this.$set(this.questionForm, this.spleenLengthId, '')
|
||||
}
|
||||
await store.dispatch('reading/removeNonTargetMeasuredData', { visitTaskId: this.visitTaskId, measureData: this.measurements[idx].MeasureData, questionId: Id })
|
||||
this.measurements.splice(idx, 1)
|
||||
|
|
Loading…
Reference in New Issue