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

131 lines
2.2 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: 'title',
key: 'title',
},
{
title: "规则",
dataIndex: 'title',
key: 'title',
},
{
title: "来源",
dataIndex: 'title',
key: 'title',
},
{
title: "类型",
dataIndex: 'title',
key: 'title',
}
]
export const slideStep4Columns = [
{
title: "薪资项目",
dataIndex: 'title',
key: 'title',
},
{
title: "计薪规则",
dataIndex: 'title',
key: 'title',
},
{
title: "操作",
dataIndex: 'cz',
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: "测试"
}];