160 lines
2.5 KiB
JavaScript
160 lines
2.5 KiB
JavaScript
// 社保
|
|
export const socialSecurityColumns = [{
|
|
title: "方案名称",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
}, {
|
|
title: "缴纳类型",
|
|
dataIndex: "username",
|
|
key: "username"
|
|
}, {
|
|
title: "缴纳范围",
|
|
dataIndex: "projectName",
|
|
key: "projectName"
|
|
}, {
|
|
title: "备注",
|
|
dataIndex: "customer",
|
|
key: "customer"
|
|
}, {
|
|
title: "操作",
|
|
dataIndex: "customer",
|
|
key: "customer"
|
|
}];
|
|
|
|
// 公积金
|
|
export const accumulationFundColumns = [{
|
|
title: "方案名称",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
}, {
|
|
title: "缴纳类型",
|
|
dataIndex: "username",
|
|
key: "username"
|
|
}, {
|
|
title: "缴纳范围",
|
|
dataIndex: "projectName",
|
|
key: "projectName"
|
|
}, {
|
|
title: "备注",
|
|
dataIndex: "customer",
|
|
key: "customer"
|
|
}, {
|
|
title: "操作",
|
|
dataIndex: "customer",
|
|
key: "customer"
|
|
}];
|
|
|
|
// 企业年金及其他福利
|
|
export const otherBenefitsColumns = [
|
|
{
|
|
title: "方案名称",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
|
|
},
|
|
{
|
|
title: "缴纳类型",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "缴纳范围",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "备注",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "操作",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
}
|
|
];
|
|
|
|
export const CustomBenefitsColumns = [
|
|
{
|
|
title: "福利名称",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "启用",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "类型",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "缴纳对象",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "操作",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
}
|
|
];
|
|
|
|
export const insertUpdateColumns = [
|
|
{
|
|
title: "类型名称",
|
|
dataIndex: "insuranceName",
|
|
key: "insuranceName"
|
|
},
|
|
{
|
|
title: "是否缴费",
|
|
dataIndex: "isPayment",
|
|
key: "isPayment"
|
|
},
|
|
{
|
|
title: "缴纳对象",
|
|
dataIndex: "paymentScope",
|
|
key: "paymentScope"
|
|
},
|
|
{
|
|
title: "基数下限",
|
|
dataIndex: "lowerLimit",
|
|
key: "lowerLimit"
|
|
},
|
|
{
|
|
title: "基数上限",
|
|
dataIndex: "upperLimit",
|
|
key: "upperLimit"
|
|
},
|
|
{
|
|
title: "缴纳比例%",
|
|
dataIndex: "paymentProportion",
|
|
key: "paymentProportion"
|
|
},
|
|
{
|
|
title: "固定费用",
|
|
dataIndex: "fixedCost",
|
|
key: "fixedCost"
|
|
},
|
|
{
|
|
title: "有效小数位",
|
|
dataIndex: "validNum",
|
|
key: "validNum"
|
|
},
|
|
{
|
|
title: "进位规则",
|
|
dataIndex: "rententionRule",
|
|
key: "rententionRule"
|
|
}
|
|
];
|
|
|
|
|
|
export const dataSource = [];
|
|
|
|
|
|
|
|
|
|
|