添加组件及页面

This commit is contained in:
zhengw
2026-01-21 17:05:30 +08:00
parent a89e69c381
commit 7ff1a911dd
54 changed files with 1078 additions and 1009 deletions

View File

@@ -1,21 +1,26 @@
/** 首页菜单 */
const iconColor = "#0052D9";
const iconColor = '#0052D9';
export const menuConfig = [
{
title: "订单管理",
icon: "form",
title: '订单管理',
icon: 'form',
iconColor: iconColor,
children: [
{
title: "销售订单",
url: "/pages/orders/ordersList/ordersList",
auth: "SF_ERP_SALE_ORDERS_VIEW",
title: '销售订单',
url: '/pages/orders/ordersList/ordersList',
auth: 'SF_ERP_SALE_ORDERS_VIEW',
},
{
title: '订单排序',
url: '/pages/orders/orderSort/orderSort',
auth: 'SF_ERP_SALE_ORDERS_VIEW',
},
],
},
{
title: "生产管理",
icon: "form",
title: '生产管理',
icon: 'tools',
iconColor: iconColor,
children: [
// {
@@ -24,14 +29,14 @@ export const menuConfig = [
// auth: "SF_ERP_PRODUCT_TASK_VIEW",
// },
{
title: "流程管理",
url: "/pages/produce/processManage/processManage",
auth: "SF_ERP_PRODUCT_PROCESS_VIEW",
title: '流程管理',
url: '/pages/produce/processManage/processManage',
auth: 'SF_ERP_PRODUCT_PROCESS_VIEW',
},
{
title: "流程录入",
url: "/pages/processEntry/processEntry",
auth: "SF_ERP_PRODUCT_PROCESS_ENTER",
title: '录入流程',
url: '/pages/processEntry/processEntry',
auth: 'SF_ERP_PRODUCT_PROCESS_ENTER',
},
],
},