添加基础资料下的页面功能

This commit is contained in:
zhengw
2026-03-06 17:18:27 +08:00
parent 816188c2bb
commit aa1294f997
47 changed files with 1697 additions and 5 deletions

View File

@@ -58,3 +58,11 @@ export const PayedStateOption = [
{ label: '部分收款', value: '2' },
{ label: '收款完成', value: '3' },
];
/** 收支类型 */
export const FinanceItemTypeObj = { 1: '收入', 2: '支出' };
export const FinanceItemTypeArr = [
{ value: '1', label: '收入' },
{ value: '2', label: '支出' },
];