mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-21 08:46:46 +08:00
受众新增在职人数显示
This commit is contained in:
@@ -693,7 +693,7 @@ const column = [
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "人数",
|
title: "总人数",
|
||||||
dataIndex: "members",
|
dataIndex: "members",
|
||||||
key: "members",
|
key: "members",
|
||||||
width: "5%",
|
width: "5%",
|
||||||
@@ -704,6 +704,18 @@ const column = [
|
|||||||
return text ? text : "-";
|
return text ? text : "-";
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "在职人数",
|
||||||
|
dataIndex: "workMembers",
|
||||||
|
key: "workMembers",
|
||||||
|
width: "5%",
|
||||||
|
align: "center",
|
||||||
|
ellipsis: true,
|
||||||
|
className: "h",
|
||||||
|
customRender: ({ text }) => {
|
||||||
|
return text ? text : "-";
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "状态",
|
title: "状态",
|
||||||
dataIndex: "state",
|
dataIndex: "state",
|
||||||
|
|||||||
Reference in New Issue
Block a user