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