订单财务状态,订单异议汇总完善

This commit is contained in:
朱昊天
2026-05-26 12:04:16 +08:00
parent 4408e80e1c
commit a44497f92c
23 changed files with 1543 additions and 86 deletions

View File

@@ -70,6 +70,32 @@ export const constantRoutes = [
}
]
},
{
path: '/finance',
component: Layout,
hidden: true,
children: [
{
path: 'summary',
component: () => import('@/views/finance/summary/index.vue'),
name: 'FinanceSummary',
meta: { title: '财务汇总', icon: 'money', noCache: true }
}
]
},
{
path: '/oms',
component: Layout,
hidden: true,
children: [
{
path: 'returnExchangeSummary',
component: () => import('@/views/oms/returnExchange/summary/index.vue'),
name: 'ReturnExchangeSummary',
meta: { title: '订单异议汇总', icon: 'list', noCache: true }
}
]
},
{ path: '/user', component: Layout, hidden: true, redirect: 'noredirect', children: [ { path: 'profile/:activeTab?', component: () => import('@/views/system/user/profile/index'), name: 'Profile', meta: { title: '个人中心', icon: 'user' } } ] }, { path: '/mat/product', component: Layout, hidden: true, children: [ { path: 'detail/:id(\\d+)', component: () => import('@/views/mat/product/detail'), name: 'ProductDetail', meta: { title: '产品详情', activeMenu: '/mat/product' } } ] }
]