51 lines
836 B
JavaScript
51 lines
836 B
JavaScript
export const unArchiveTabs = [
|
|
{
|
|
title: "正常缴纳",
|
|
viewcondition: "NORMAL",
|
|
},
|
|
{
|
|
title: "异动清单",
|
|
viewcondition: "LIST",
|
|
},
|
|
{
|
|
title: "补缴",
|
|
viewcondition: "PAY",
|
|
},
|
|
{
|
|
title: "总览",
|
|
viewcondition: "OVERVIEW",
|
|
},
|
|
];
|
|
export const archiveTabs = [
|
|
{
|
|
title: "正常缴纳",
|
|
viewcondition: "NORMAL",
|
|
},
|
|
{
|
|
title: "补缴",
|
|
viewcondition: "PAY",
|
|
},
|
|
{
|
|
title: "总览",
|
|
viewcondition: "OVERVIEW",
|
|
},
|
|
];
|
|
|
|
export const regColumns = [
|
|
{
|
|
title: '福利项',
|
|
dataIndex: 'benefits',
|
|
key: 'benefits',
|
|
},
|
|
{
|
|
title: '个人缴纳金额',
|
|
dataIndex: 'personalPaymentAmount',
|
|
key: 'personalPaymentAmount',
|
|
},
|
|
{
|
|
title: '单位缴纳金额',
|
|
dataIndex: 'companyPaymentAmount',
|
|
key: 'companyPaymentAmount',
|
|
},
|
|
];
|