5fcb82c0c0
2、新增收付款模块
13 lines
715 B
JavaScript
13 lines
715 B
JavaScript
export const billPaymentTableColumns = [
|
|
{ prop: 'paymentNo', label: '单据号', minWidth: 160 },
|
|
{ prop: 'deptName', label: '使用部门', minWidth: 150 },
|
|
{ prop: 'paymentDate', label: '付款日期', minWidth: 120 },
|
|
{ prop: 'usedAmount', label: '使用金额', minWidth: 130, money: true },
|
|
{ prop: 'remark', label: '备注', minWidth: 180 },
|
|
{ prop: 'approvalStatusName', label: '单据状态', minWidth: 110, status: true },
|
|
{ prop: 'currentNode', label: '当前节点', minWidth: 120 },
|
|
{ prop: 'currentProcessor', label: '当前处理人', minWidth: 130 },
|
|
{ prop: 'createUserName', label: '创建人', minWidth: 110 },
|
|
{ prop: 'createTime', label: '创建时间', minWidth: 170 },
|
|
];
|