salary-management-front/pc4mobx/hrmSalary/pages/ledger/columns.js

125 lines
2.1 KiB
JavaScript
Raw Normal View History

2022-03-15 17:50:54 +08:00
import { Switch } from 'antd'
2022-02-25 09:24:56 +08:00
export const columns = [
{
2022-03-15 17:50:54 +08:00
title: "账套名称",
2022-02-25 09:24:56 +08:00
dataIndex: 'title',
key: 'title',
},
{
2022-03-15 17:50:54 +08:00
title: "薪资周期",
2022-02-25 09:24:56 +08:00
dataIndex: 'title',
key: 'title',
},
{
2022-03-15 17:50:54 +08:00
title: "关联人数",
2022-02-25 09:24:56 +08:00
dataIndex: 'title',
key: 'title',
},
{
2022-03-15 17:50:54 +08:00
title: "启用",
dataIndex: 'isSwitch',
key: 'isSwitch',
render: (text) => <Switch />
2022-02-25 09:24:56 +08:00
},
{
2022-03-15 17:50:54 +08:00
title: "备注",
2022-02-25 09:24:56 +08:00
dataIndex: 'title',
key: 'title',
},
{
title: "操作",
2022-03-15 17:50:54 +08:00
dataIndex: 'cz',
key: 'cz'
2022-02-25 09:24:56 +08:00
}
]
2022-03-16 10:41:38 +08:00
export const slideStep2Columns= [
{
title: "对象类型",
dataIndex: 'title',
key: 'title',
},
{
title: "对象",
dataIndex: 'title',
key: 'title',
},
{
title: "安全级别",
dataIndex: 'title',
key: 'title',
},
{
title: "员工状态",
dataIndex: 'title',
key: 'title'
},
]
export const slideStep3Columns = [
{
2022-03-29 17:33:54 +08:00
title: "名称",
dataIndex: 'name',
key: 'name',
2022-03-16 10:41:38 +08:00
},
{
2022-07-28 17:16:40 +08:00
title: "核算公式",
2022-04-20 15:28:40 +08:00
dataIndex: 'formulaContent',
key: 'formulaContent'
2022-03-16 10:41:38 +08:00
},
2022-07-28 17:16:40 +08:00
{
title: "个税申请表对应字段",
dataIndex: 'taxDeclarationColumn',
key: 'taxDeclarationColumn',
}
2022-03-16 10:41:38 +08:00
]
export const slideStep4Columns = [
{
title: "薪资项目",
2022-03-30 20:04:34 +08:00
dataIndex: 'salaryItemName',
key: 'salaryItemName',
2022-03-16 10:41:38 +08:00
},
{
title: "计薪规则",
2022-03-30 20:04:34 +08:00
dataIndex: 'rule',
key: 'rule',
2022-03-16 10:41:38 +08:00
},
{
title: "操作",
2022-03-30 20:04:34 +08:00
key: 'cz'
2022-03-16 10:41:38 +08:00
},
]
export const slideStep5Columns = [
{
title: "规则名称",
dataIndex: 'title',
key: 'title',
},
{
title: "校验规则",
dataIndex: 'title',
key: 'title',
},
{
title: "备注",
dataIndex: 'title',
key: 'title',
},
{
title: "操作",
dataIndex: 'cz',
key: 'cz',
},
]
2022-02-25 09:24:56 +08:00
2022-03-15 17:50:54 +08:00
export const dataSource = [{
title: "测试"
}];
2022-02-25 09:24:56 +08:00