You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.0 KiB
73 lines
1.0 KiB
export const defaultColumns = [{
|
|
key: 0,
|
|
prop: 'shop',
|
|
label: `门店`,
|
|
visible: true
|
|
},
|
|
{
|
|
key: 1,
|
|
prop: 'createUserName',
|
|
label: `报销人`,
|
|
visible: true
|
|
},
|
|
{
|
|
key: 2,
|
|
prop: 'expenseDate',
|
|
label: `日期`,
|
|
visible: true
|
|
},
|
|
{
|
|
key: 3,
|
|
prop: 'signClass',
|
|
label: `成交班型`,
|
|
visible: true
|
|
},
|
|
{
|
|
key: 4,
|
|
prop: 'signPrice',
|
|
label: `报销金额`,
|
|
visible: true
|
|
},
|
|
{
|
|
key: 5,
|
|
prop: 'actualEntry',
|
|
label: `实际入账`,
|
|
visible: true
|
|
},
|
|
{
|
|
key: 6,
|
|
prop: 'commission',
|
|
label: `手续费`,
|
|
visible: true
|
|
},
|
|
{
|
|
key: 5,
|
|
prop: 'remark',
|
|
label: `备注`,
|
|
visible: true
|
|
},
|
|
{
|
|
key: 7,
|
|
prop: 'createTime',
|
|
label: `申请时间`,
|
|
visible: true
|
|
},
|
|
{
|
|
key: 8,
|
|
prop: 'state',
|
|
label: `审批状态`,
|
|
visible: true
|
|
},
|
|
{
|
|
key: 9,
|
|
prop: 'checkUser',
|
|
label: `审批人`,
|
|
visible: true
|
|
},
|
|
{
|
|
key: 10,
|
|
prop: 'checkTime',
|
|
label: `审批时间`,
|
|
visible: true
|
|
}
|
|
]
|
|
|