管理系统PC前端
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.
 
 
 
 
dm-manage-web/src/views/finance/expense/components/SignExpense/columns.js

91 lines
1.3 KiB

export const defaultColumns = [{
key: 0,
prop: 'name',
label: `姓名`,
visible: true
},
{
key: 1,
prop: 'phone',
label: `联系方式`,
visible: true
},
{
key: 2,
prop: 'dealDate',
label: `报名时间`,
visible: true
},
{
key: 3,
prop: 'signPrice',
label: `成交价`,
visible: true
},
{
key: 4,
prop: 'className',
label: `班型`,
visible: true
},
{
key: 5,
prop: 'schoolName',
label: `报名驾校`,
visible: true
},
{
key: 6,
prop: 'profit',
label: `利润`,
visible: true
},
{
key: 7,
prop: 'expenseType',
label: `额外支出项目`,
visible: true
},
{
key: 8,
prop: 'money',
label: `额外支出金额`,
visible: true
},
{
key: 9,
prop: 'followUserName',
label: `学员归属`,
visible: true
},
{
key: 10,
prop: 'remark',
label: `备注`,
visible: true
},
{
key: 11,
prop: 'createTime',
label: `申请时间`,
visible: true
},
{
key: 12,
prop: 'state',
label: `审批状态`,
visible: true
},
{
key: 13,
prop: 'checkUser',
label: `审批人`,
visible: true
},
{
key: 14,
prop: 'checkTime',
label: `审批时间`,
visible: true
}
]