mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 22:06:45 +08:00
Merge branch 'zcwy_1009_bug' into dev_master
This commit is contained in:
@@ -500,13 +500,21 @@ const audiColums = ref([
|
||||
ellipsis: true,
|
||||
},
|
||||
{
|
||||
title: "人数",
|
||||
title: "总人数",
|
||||
dataIndex: "totalMember",
|
||||
key: "totalMember",
|
||||
width: 30,
|
||||
align: "center",
|
||||
className: "h",
|
||||
},
|
||||
{
|
||||
title: "在职人数",
|
||||
dataIndex: "workMember",
|
||||
key: "workMember",
|
||||
width: 30,
|
||||
align: "center",
|
||||
className: "h",
|
||||
},
|
||||
]);
|
||||
const orgSelectKeys = ref([]);
|
||||
const auditTableRef = ref();
|
||||
@@ -612,7 +620,7 @@ const submitAuth = () => {
|
||||
|
||||
function handleDialogOk() {
|
||||
if (auditSelectRowKeys.value.length || deptList.value.length) {
|
||||
dialog({ content: "您选择了组织或受众,此添加为异步添加,请稍后手动刷新学员!", ok: handleStageOk });
|
||||
dialog({ content: "您选择了组织或受众,此添加为异步添加,请稍后手动刷新学员!(本次添加只添加在职人员)", ok: handleStageOk });
|
||||
return;
|
||||
}
|
||||
handleStageOk();
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user