From 35793d39b7381cfeefb6d29c3c340142475b0619 Mon Sep 17 00:00:00 2001 From: miaojiale <1123971748@qq.com> Date: Wed, 28 Jun 2023 13:29:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=AD=9B=E6=9F=A5=E5=9C=BA?= =?UTF-8?q?=E6=99=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/screening/index.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/views/screening/index.vue b/src/views/screening/index.vue index ef994f1..e18868c 100644 --- a/src/views/screening/index.vue +++ b/src/views/screening/index.vue @@ -326,9 +326,15 @@ export default { { label: "场景", minWidth: 120, - value: "unionName", + value: "patientFrom", formatter: (row) => { - return row.unionName ? row.unionName : "--" + return row.patientFrom == "1" + ? "社区筛查" + : row.patientFrom == "2" + ? "医院筛查" + : row.patientFrom == "3" + ? "体检筛查" + : "--" }, sortable: "custom", }, -- 2.22.0