From c8c64946a01cbe0726bb2aca8548f07dcb4ebd15 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 9 Sep 2025 14:44:19 +0800 Subject: [PATCH] =?UTF-8?q?=E9=98=85=E7=89=87=E6=8A=A5=E5=91=8A=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=E5=90=8E=E5=88=B7=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trials-panel/reading/dicoms/components/ReportPage.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue b/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue index 4bb04e2..5a8efe3 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue @@ -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 }