新增订单管理页面

This commit is contained in:
LAPTOP-CNV4CMCJ\cheng
2022-10-27 16:49:47 +08:00
parent 7bf37fcb64
commit dcb3f1c8f0
2 changed files with 473 additions and 0 deletions

View File

@ -196,6 +196,21 @@ export const constantRoutes = [
meta: {title: '流程详情', activeMenu: '/bpm/task/my'}
}
]
},
{
path: '/order',
component: Layout,
name: '订单管理',
meta: { title: '订单管理' },
alwaysShow: true,
children: [
{
path: '/order/goods-order',
name: '商品订单',
meta: { title: '商品订单' },
component: (resolve) => require(['@/views/order/goodsOrder'], resolve)
}
]
}
]