阅片报告提交后刷新
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
40de1d3b1d
commit
c8c64946a0
|
@ -525,6 +525,9 @@ export default {
|
|||
this.tumorEvaluate = res.Result.CalculateResult.TumorEvaluate ? parseInt(res.Result.CalculateResult.TumorEvaluate) : null
|
||||
this.isExistDisease = res.Result.CalculateResult.IsExistDisease ? parseInt(res.Result.CalculateResult.IsExistDisease) : null
|
||||
this.answerArr = []
|
||||
this.taskReasonObj = {}
|
||||
this.tumorEvaluationObj = {}
|
||||
this.currentTumorEvaluationObj = {}
|
||||
this.questions = res.Result.TaskQuestions.concat()
|
||||
this.visitTaskList = res.Result.VisitTaskList
|
||||
var taskQuestions = this.getQuestions(res.Result.TaskQuestions, !this.isShowDetail, null, null)
|
||||
|
@ -707,7 +710,7 @@ export default {
|
|||
}
|
||||
},
|
||||
handleTumorEvaluationChange(val, visitTaskId) {
|
||||
this.taskReasonObj[visitTaskId] = ''
|
||||
this.$set(this.taskReasonObj, visitTaskId, '')
|
||||
this.evaluateReasonObjChange('', visitTaskId)
|
||||
var idx = this.answerArr.findIndex(i => i.questionType === 21 && i.visitTaskId === visitTaskId)
|
||||
if (idx > -1) {
|
||||
|
@ -808,6 +811,7 @@ export default {
|
|||
const res = await submitDicomVisitTask(params)
|
||||
if (res.IsSuccess) {
|
||||
this.$message.success(this.$t('common:message:savedSuccessfully'))
|
||||
this.getReportInfo(false)
|
||||
if (this.$refs['signForm']) {
|
||||
this.$refs['signForm'].btnLoading = false
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue