1、调整配载、总单

2、新增收付款模块
This commit is contained in:
2026-08-22 21:11:48 +08:00
parent 1962bee882
commit 5fcb82c0c0
51 changed files with 11663 additions and 1506 deletions
+12
View File
@@ -0,0 +1,12 @@
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 },
];