This commit is contained in:
2023-08-09 16:44:10 +08:00
parent 2cdb072ab8
commit ba59394115
100 changed files with 8965 additions and 307 deletions

View File

@@ -0,0 +1,73 @@
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
}
]