25 lines
1.3 KiB
JavaScript
25 lines
1.3 KiB
JavaScript
|
|
export const defaultColumns = {
|
||
|
|
1: [
|
||
|
|
{ key: 0, prop: 'spotName', label: `报名点`, visible: true },
|
||
|
|
{ key: 1, prop: 'expenseType', label: `报销款项`, visible: true },
|
||
|
|
{ key: 2, prop: 'expenseTotal', label: `报销金额`, visible: true },
|
||
|
|
{ key: 3, prop: 'applyUser', label: `申请人`, visible: true },
|
||
|
|
{ key: 4, prop: 'applyDate', label: `申请时间`, visible: true },
|
||
|
|
{ key: 5, prop: 'applyRemark', label: `申请备注`, visible: true },
|
||
|
|
{ key: 6, prop: 'auditStatus', label: `审批状态`, visible: true },
|
||
|
|
{ key: 7, prop: 'auditUser', label: `审批人`, visible: true },
|
||
|
|
{ key: 8, prop: 'auditDate', label: `审批时间`, visible: true }
|
||
|
|
],
|
||
|
|
2: [
|
||
|
|
{ key: 0, prop: 'stuName', label: `成交学员`, visible: true },
|
||
|
|
{ key: 1, prop: 'expenseType', label: `报销款项`, visible: true },
|
||
|
|
{ key: 2, prop: 'expenseTotal', label: `报销金额`, visible: true },
|
||
|
|
{ key: 3, prop: 'applyUser', label: `申请人`, visible: true },
|
||
|
|
{ key: 4, prop: 'applyDate', label: `申请时间`, visible: true },
|
||
|
|
{ key: 5, prop: 'applyRemark', label: `申请备注`, visible: true },
|
||
|
|
{ key: 6, prop: 'auditStatus', label: `审批状态`, visible: true },
|
||
|
|
{ key: 7, prop: 'auditUser', label: `审批人`, visible: true },
|
||
|
|
{ key: 8, prop: 'auditDate', label: `审批时间`, visible: true }
|
||
|
|
]
|
||
|
|
};
|