From 4e86ae857b35cc7eaac0773e1adc87d0665f32f3 Mon Sep 17 00:00:00 2001 From: zhangsir Date: Thu, 17 Oct 2024 17:11:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=97=E4=BC=97=E6=96=B0=E5=A2=9E=E5=9C=A8?= =?UTF-8?q?=E8=81=8C=E4=BA=BA=E6=95=B0=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/audience/audienceManage.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/views/audience/audienceManage.vue b/src/views/audience/audienceManage.vue index 1b24164e..e053dc92 100644 --- a/src/views/audience/audienceManage.vue +++ b/src/views/audience/audienceManage.vue @@ -693,7 +693,7 @@ const column = [ }, }, { - title: "人数", + title: "总人数", dataIndex: "members", key: "members", width: "5%", @@ -704,6 +704,18 @@ const column = [ return text ? text : "-"; }, }, + { + title: "在职人数", + dataIndex: "workMembers", + key: "workMembers", + width: "5%", + align: "center", + ellipsis: true, + className: "h", + customRender: ({ text }) => { + return text ? text : "-"; + }, + }, { title: "状态", dataIndex: "state",