diff --git a/.eslintignore b/.eslintignore index f8cee48b..3ff12bc3 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,7 +4,7 @@ src/utils/* public dist -# src/* +src/* src/views/trials/trials-panel/visit/* src/App.vue src/views/trials/trials-panel/reading/global-review/* diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue b/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue index 05af5533..38393016 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue @@ -450,7 +450,7 @@ export default { if (!this.isBaseLineTask && this.questionForm[this.pet5PSId] > 0) { // 当前访视的PET 5ps评分大于基线的PET 5ps评分 增大 // 当前访视的PET 5ps评分小于基线的PET 5ps评分 减小 - this.questionForm[this.uptakeFromBaselineId] = this.questionForm[this.pet5PSId] > this.baseLinePET5PS ? '1' : '2' + this.questionForm[this.uptakeFromBaselineId] = this.questionForm[this.pet5PSId] > this.baseLinePET5PS ? '1' : this.questionForm[this.pet5PSId] < this.baseLinePET5PS ? '2' : '' } }, setpet5PS() {