125 lines
2.1 KiB
JavaScript
125 lines
2.1 KiB
JavaScript
import { Switch } from 'antd'
|
|
export const columns = [
|
|
{
|
|
title: "账套名称",
|
|
dataIndex: 'title',
|
|
key: 'title',
|
|
},
|
|
{
|
|
title: "薪资周期",
|
|
dataIndex: 'title',
|
|
key: 'title',
|
|
},
|
|
{
|
|
title: "关联人数",
|
|
dataIndex: 'title',
|
|
key: 'title',
|
|
},
|
|
{
|
|
title: "启用",
|
|
dataIndex: 'isSwitch',
|
|
key: 'isSwitch',
|
|
render: (text) => <Switch />
|
|
},
|
|
{
|
|
title: "备注",
|
|
dataIndex: 'title',
|
|
key: 'title',
|
|
},
|
|
{
|
|
title: "操作",
|
|
dataIndex: 'cz',
|
|
key: 'cz'
|
|
}
|
|
]
|
|
|
|
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 = [
|
|
{
|
|
title: "名称",
|
|
dataIndex: 'name',
|
|
key: 'name',
|
|
},
|
|
{
|
|
title: "核算公式",
|
|
dataIndex: 'formulaContent',
|
|
key: 'formulaContent'
|
|
},
|
|
{
|
|
title: "个税申请表对应字段",
|
|
dataIndex: 'taxDeclarationColumn',
|
|
key: 'taxDeclarationColumn',
|
|
}
|
|
]
|
|
|
|
export const slideStep4Columns = [
|
|
{
|
|
title: "薪资项目",
|
|
dataIndex: 'salaryItemName',
|
|
key: 'salaryItemName',
|
|
},
|
|
{
|
|
title: "计薪规则",
|
|
dataIndex: 'rule',
|
|
key: 'rule',
|
|
},
|
|
{
|
|
title: "操作",
|
|
key: 'cz'
|
|
},
|
|
]
|
|
|
|
export const slideStep5Columns = [
|
|
{
|
|
title: "规则名称",
|
|
dataIndex: 'title',
|
|
key: 'title',
|
|
},
|
|
{
|
|
title: "校验规则",
|
|
dataIndex: 'title',
|
|
key: 'title',
|
|
},
|
|
{
|
|
title: "备注",
|
|
dataIndex: 'title',
|
|
key: 'title',
|
|
},
|
|
{
|
|
title: "操作",
|
|
dataIndex: 'cz',
|
|
key: 'cz',
|
|
},
|
|
]
|
|
|
|
export const dataSource = [{
|
|
title: "测试"
|
|
}];
|
|
|
|
|
|
|
|
|
|
|