179 lines
3.0 KiB
JavaScript
179 lines
3.0 KiB
JavaScript
export const columns = [
|
|
{
|
|
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"
|
|
},
|
|
{
|
|
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"
|
|
},
|
|
{
|
|
title: "累计住房租金",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "累计赡养老人",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
},
|
|
{
|
|
title: "操作",
|
|
dataIndex: "title",
|
|
key: "title"
|
|
}
|
|
];
|
|
|
|
|
|
export const modalColumns = [
|
|
{
|
|
title: "姓名",
|
|
dataIndex: "username",
|
|
key: "username"
|
|
},
|
|
{
|
|
title: "个税扣缴义务人",
|
|
dataIndex: "taxAgentName",
|
|
key: "taxAgentName"
|
|
},
|
|
{
|
|
title: "部门",
|
|
dataIndex: "departmentName",
|
|
key: "departmentName"
|
|
},
|
|
{
|
|
title: "手机号",
|
|
dataIndex: "mobile",
|
|
key: "mobile"
|
|
},
|
|
{
|
|
title: "工号",
|
|
dataIndex: "jobNum",
|
|
key: "jobNum"
|
|
},
|
|
{
|
|
title: "证件号码",
|
|
dataIndex: "idNo",
|
|
key: "idNo"
|
|
},
|
|
{
|
|
title: "入职日期",
|
|
dataIndex: "hiredate",
|
|
key: "hiredate"
|
|
},
|
|
{
|
|
title: "商业健康保险",
|
|
dataIndex: "businessHealthyInsurance",
|
|
key: "businessHealthyInsurance"
|
|
},
|
|
{
|
|
title: "税延养老保险",
|
|
dataIndex: "taxDelayEndowmentInsurance",
|
|
key: "taxDelayEndowmentInsurance"
|
|
},
|
|
{
|
|
title: "其他",
|
|
dataIndex: "otherDeduction",
|
|
key: "otherDeduction"
|
|
},
|
|
{
|
|
title: "准予扣除的捐赠额",
|
|
dataIndex: "deductionAllowedDonation",
|
|
key: "deductionAllowedDonation"
|
|
}
|
|
];
|
|
|
|
export const dataSource = [];
|
|
|
|
export const dataCollectCondition = [
|
|
{
|
|
items: [
|
|
{
|
|
conditionType: "INPUT",
|
|
domkey: ["businessHealthyInsurance"],
|
|
fieldcol: 14,
|
|
label: "商业健康保险",
|
|
labelcol: 8,
|
|
value: "",
|
|
viewAttr: 2
|
|
},
|
|
{
|
|
conditionType: "INPUT",
|
|
domkey: ["taxDelayEndowmentInsurance"],
|
|
fieldcol: 14,
|
|
label: "税延养老保险",
|
|
labelcol: 8,
|
|
value: "",
|
|
viewAttr: 2
|
|
},
|
|
{
|
|
conditionType: "INPUT",
|
|
domkey: ["otherDeduction"],
|
|
fieldcol: 14,
|
|
label: "其他",
|
|
labelcol: 8,
|
|
value: "",
|
|
viewAttr: 2
|
|
},
|
|
{
|
|
conditionType: "INPUT",
|
|
domkey: ["deductionAllowedDonation"],
|
|
fieldcol: 14,
|
|
label: "准予扣除的捐赠额",
|
|
labelcol: 8,
|
|
value: "",
|
|
viewAttr: 2
|
|
}
|
|
],
|
|
title: "数据采集",
|
|
defaultshow: true
|
|
}
|
|
];
|
|
|
|
|
|
|
|
|
|
|