添加页面

This commit is contained in:
zhengw
2026-01-29 17:46:14 +08:00
parent df67413bf8
commit 85483c7ca2
44 changed files with 1606 additions and 94 deletions

View File

@@ -40,4 +40,48 @@ export const menuConfig = [
},
],
},
{
title: '采购管理',
icon: 'cart-add',
iconColor: iconColor,
children: [
{
title: '采购订单',
url: '/pages/purchase/buyOrder/buyOrder',
auth: 'SF_ERP_PURCHASE_ORDER_VIEW',
},
{
title: '采购入库',
url: '/pages/purchase/buyInOrder/buyInOrder',
auth: 'SF_ERP_PURCHASE_STORE_VIEW',
},
],
},
{
title: '财务管理',
icon: 'currency-exchange',
iconColor: iconColor,
children: [
{
title: '收入单',
url: '/pages/finance/income/income',
auth: 'SF_FINANCE_INCOME_VIEW',
},
{
title: '支出单',
url: '/pages/finance/outcome/outcome',
auth: 'SF_FINANCE_OUTCOME_VIEW',
},
{
title: '转账单',
url: '/pages/finance/giro/giro',
auth: 'SF_FINANCE_TRANSFER_VIEW',
},
{
title: '资金明细',
url: '/pages/finance/flow/flow',
auth: 'SF_FINANCE_FLOW_VIEW',
},
],
},
];