salary-management-front/pc4mobx/hrmSalary/pages/socialSecurityBenefits/programme/columns.js

93 lines
1.7 KiB
JavaScript

import { WeaLocaleProvider } from "ecCom";
const getLabel = WeaLocaleProvider.getLabel;
// 社保
export const insertUpdateColumns = [
{
title: getLabel(15795, "类型名称"),
lanId: 15795,
dataIndex: "insuranceName",
key: "insuranceName",
width: 120,
fixed: "left"
},
{
title: getLabel(543168, "是否缴费"),
lanId: 543168,
dataIndex: "isPayment",
key: "isPayment",
width: 100
},
{
title: getLabel(543169, "缴纳对象"),
lanId: 543169,
dataIndex: "paymentScope",
key: "paymentScope",
width: 100
},
{
title: getLabel(543158, "缴纳周期"),
lanId: 543158,
dataIndex: "paymentCycle",
key: "paymentCycle",
width: 200
},
{
title: getLabel(543170, "核算方式"),
lanId: 543170,
dataIndex: "accountType",
key: "accountType",
width: 200
},
{
title: getLabel(543171, "基数下限"),
lanId: 543171,
dataIndex: "lowerLimit",
key: "lowerLimit",
width: 100
},
{
title: getLabel(543172, "基数上限"),
lanId: 543172,
dataIndex: "upperLimit",
key: "upperLimit",
width: 100
},
{
title: getLabel(543173, "缴纳比例%"),
lanId: 543173,
dataIndex: "paymentProportion",
key: "paymentProportion",
width: 100
},
{
title: getLabel(543174, "固定费用"),
lanId: 543174,
dataIndex: "fixedCost",
key: "fixedCost",
width: 100
},
{
title: getLabel(543175, "有效小数位"),
lanId: 543175,
dataIndex: "validNum",
key: "validNum",
width: 100
},
{
title: getLabel(543176, "进位规则"),
lanId: 543176,
dataIndex: "rententionRule",
key: "rententionRule",
width: 100
}
];
export const dataSource = [];