From b2290ca7398cb43effaae606f3bce969c3d1153f Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Mon, 11 Mar 2024 09:09:33 +0800 Subject: [PATCH] =?UTF-8?q?=E8=84=BE=E8=84=8F=E7=8A=B6=E6=80=81=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trials/trials-panel/reading/dicoms/components/Questions.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 efb69398..af74c9a6 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Questions.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Questions.vue @@ -315,7 +315,7 @@ export default { async getSplenicState() { try { var spleenLength = this.questionForm[this.spleenLengthId] - spleenLength = isNaN(parseFloat(spleenLength)) ? 0 : parseFloat(spleenLength) + spleenLength = isNaN(parseFloat(spleenLength)) ? -1 : parseFloat(spleenLength) const result = await getSplenicState(this.visitTaskId, spleenLength) return { isSuccess: true, result: result.Result } } catch (e) {