From 8ad8f75a339aa3486f88887b6a98f9e70302c2d2 Mon Sep 17 00:00:00 2001 From: lkk <364857242@qq.com> Date: 星期四, 17 七月 2025 14:47:32 +0800 Subject: [PATCH] 体检类型 --- src/views/doctor/checkAll/index.vue | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/views/doctor/checkAll/index.vue b/src/views/doctor/checkAll/index.vue index b65dfce..327ec5e 100644 --- a/src/views/doctor/checkAll/index.vue +++ b/src/views/doctor/checkAll/index.vue @@ -3132,6 +3132,18 @@ this.qingkong(); this.$refs.Pre.open = false; this.tableAll = row; + let dict = "dict_tjtype" + getDicts(dict).then(res => { + if (res.code == 200) { + res.data.forEach((item) => { + if (this.tableAll.tjCategory == item.dictValue) { + this.tableAll.tjCategory = item.dictLabel; + } + }); + } else { + throw new Error('鑾峰彇浣撴绫诲瀷瀛楀吀澶辫触'); + } + }) this.tjproject = "0"; this.tjNumber = this.tableAll.tjNumber; -- Gitblit v1.8.0