From b461716195c9b892a2a5d11fa1ce0f58234025f7 Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Sun, 7 Apr 2024 13:20:02 +0800 Subject: [PATCH] =?UTF-8?q?=E8=84=BE=E8=84=8F=E7=8A=B6=E6=80=81=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E8=AE=A1=E7=AE=97=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dicoms/components/Fusion/FusionForm.vue | 2 +- .../reading/dicoms/components/Questions.vue | 27 +++++-------------- 2 files changed, 7 insertions(+), 22 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Fusion/FusionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/Fusion/FusionForm.vue index e9823540..dd323acf 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Fusion/FusionForm.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Fusion/FusionForm.vue @@ -255,7 +255,7 @@ export default { this.petctWindow = window.open(routeData.href, '_blank') this.$emit('close') }, - handleCancel(){ + handleCancel() { this.$emit('close') }, handleTaskIdChange(v) { diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Questions.vue b/src/views/trials/trials-panel/reading/dicoms/components/Questions.vue index bf103de7..db50618b 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Questions.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Questions.vue @@ -647,14 +647,10 @@ export default { if (this.isBaseLineTask) { // 直径≤130mm时,系统默认脾脏状态为“正常” if (length <= 130) { - // this.$set(this.questionForm, this.spleenStatusId, '1') - // this.calculateSpleenStatus = '1' status = '1' } // 直径>130mm时,系统默认脾脏状态为“肿大” if (length > 130) { - // this.$set(this.questionForm, this.spleenStatusId, '6') - // this.calculateSpleenStatus = '6' status = '6' } } else { @@ -664,21 +660,21 @@ export default { if (this.spleenInfo.BaseLineSpleenLength) { percentFormBaseline = diffFromBaseline * 100 / (this.spleenInfo.BaseLineSpleenLength - 130) } - if (this.spleenInfo.BaseLineSpleenLength > 130 && diffFromBaseline >= 10 && percentFormBaseline > 50) { + if (length <= 130) { + // 当前访视的垂直径≤130mm + // 系统默认脾脏状态为“正常” + status = '1' + } else if (this.spleenInfo.BaseLineSpleenLength > 130 && diffFromBaseline >= 10 && percentFormBaseline > 50) { // 1、基线 垂直径>130 mm // 2、与基线相比脾垂直径变化值≥10 mm // 3、与基线相比脾肿大增加的百分比>50% // 系统默认脾脏状态为“显著增大” - // this.$set(this.questionForm, this.spleenStatusId, '4') - // this.calculateSpleenStatus = '4' status = '4' } else if (this.spleenInfo.BaseLineSpleenLength <= 130 && diffFromBaseline >= 20 && length > 130) { // 1、基线垂直径≤130mm // 2、与基线相比脾垂直径变化值≥20 mm // 3、当前垂直径>130 mm // 系统默认脾脏状态为“显著增大” - // this.$set(this.questionForm, this.spleenStatusId, '4') - // this.calculateSpleenStatus = '4' status = '4' } else if (this.spleenInfo.BaseLineSpleenLength > 130 && this.spleenInfo.LowSpleenLength <= 130 && length - this.spleenInfo.LowSpleenLength >= 20 && length > 130) { // 1、基线 垂直径>130 mm @@ -686,25 +682,14 @@ export default { // 3、与最低点相比脾脏垂直径的增加值≥20 mm // 4、当前垂直径>130 mm // 系统默认脾脏状态为“显著增大” - // this.$set(this.questionForm, this.spleenStatusId, '4') - // this.calculateSpleenStatus = '4' status = '4' - } else if (length < 130) { - // 当前访视的垂直径≤130mm - // 系统默认脾脏状态为“正常” - // this.$set(this.questionForm, this.spleenStatusId, '1') - // this.calculateSpleenStatus = '1' - status = '1' } else if (this.spleenInfo.BaseLineState === '6' && percentFormBaseline < -50) { // 1、基线期 状态为“肿大” // 2、与基线相比脾肿大增加的百分比小于-50% // 系统默认脾脏状态为“部分缓解” - // this.$set(this.questionForm, this.spleenStatusId, '2') - // this.calculateSpleenStatus = '2' status = '2' } else { - // this.$set(this.questionForm, this.spleenStatusId, '3') - // this.calculateSpleenStatus = '3' + // 系统默认脾脏状态为“稳定” status = '3' } }