120 lines
2.2 KiB
JavaScript
120 lines
2.2 KiB
JavaScript
import {EditableCell} from '../../components/EditTable'
|
|
|
|
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',
|
|
}
|
|
]
|
|
|
|
export const slideColumns = [
|
|
{
|
|
title: '序号',
|
|
dataIndex: 'indexNum',
|
|
key: 'indexNum',
|
|
popover: true
|
|
},
|
|
{
|
|
title: '收入',
|
|
children: [
|
|
{
|
|
title: '下限(不含)',
|
|
dataIndex: 'incomeLowerLimit',
|
|
key: 'incomeLowerLimit',
|
|
editable: true
|
|
},
|
|
{
|
|
title: '上限(含)',
|
|
dataIndex: 'incomeUpperLimit',
|
|
key: 'incomeUpperLimit',
|
|
editable: true
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: '免税标准',
|
|
children: [
|
|
{
|
|
title: '固定值',
|
|
dataIndex: 'dutyFreeValue',
|
|
key: 'dutyFreeValue',
|
|
editable: true
|
|
},
|
|
{
|
|
title: '比例',
|
|
dataIndex: 'dutyFreeRate',
|
|
key: 'dutyFreeRate',
|
|
editable: true
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: '应纳税所得额',
|
|
children: [
|
|
{
|
|
title: '下限(不含)',
|
|
dataIndex: 'taxableIncomeLl',
|
|
key: 'taxableIncomeLl',
|
|
editable: true
|
|
},
|
|
{
|
|
title: '上限(含)',
|
|
dataIndex: 'taxableIncomeUl',
|
|
key: 'taxableIncomeUl',
|
|
editable: true
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: '税率',
|
|
dataIndex: 'taxRate',
|
|
key: 'taxRate',
|
|
editable: true
|
|
},
|
|
{
|
|
title: '速算扣除',
|
|
dataIndex: 'taxDeduction',
|
|
key: 'taxDeduction',
|
|
editable: true
|
|
}
|
|
];
|
|
|
|
|
|
export const dataSource = [];
|
|
|
|
|
|
|
|
|
|
|