58 lines
813 B
JavaScript
58 lines
813 B
JavaScript
export const columns = [
|
|
{
|
|
title: "序号",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "个税扣缴义务人",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "备注",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "操作",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
}
|
|
];
|
|
export const importEmployColumns = [
|
|
{
|
|
title: "姓名",
|
|
dataIndex: "username",
|
|
key: "username"
|
|
},
|
|
{
|
|
title: "部门",
|
|
dataIndex: "departmentName",
|
|
key: "departmentName"
|
|
},
|
|
{
|
|
title: "工号",
|
|
dataIndex: "jobNum",
|
|
key: "jobNum"
|
|
},
|
|
{
|
|
title: "手机号",
|
|
dataIndex: "mobile",
|
|
key: "mobile"
|
|
},
|
|
{
|
|
title: "员工状态",
|
|
dataIndex: "employeeStatus",
|
|
key: "employeeStatus"
|
|
},
|
|
];
|
|
|
|
|
|
export const dataSource = [];
|
|
|
|
|
|
|
|
|
|
|