受众新增在职人数显示

This commit is contained in:
zhangsir
2024-10-17 17:11:15 +08:00
parent 048c6d3cbf
commit 4e86ae857b

View File

@@ -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",