feat(project): implement all-orders page with modular structure
All checks were successful
Build and Deploy TenantUI / build-and-deploy (push) Successful in 55s
All checks were successful
Build and Deploy TenantUI / build-and-deploy (push) Successful in 55s
This commit is contained in:
27
apps/web-antd/src/router/routes/modules/order.ts
Normal file
27
apps/web-antd/src/router/routes/modules/order.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { RouteRecordRaw } from 'vue-router';
|
||||
|
||||
/** 文件职责:订单管理模块静态路由。 */
|
||||
const routes: RouteRecordRaw[] = [
|
||||
{
|
||||
meta: {
|
||||
icon: 'lucide:receipt-text',
|
||||
order: 15,
|
||||
title: '订单管理',
|
||||
},
|
||||
name: 'Order',
|
||||
path: '/order',
|
||||
children: [
|
||||
{
|
||||
name: 'OrderAll',
|
||||
path: '/order/all',
|
||||
component: () => import('#/views/order/all/index.vue'),
|
||||
meta: {
|
||||
icon: 'lucide:list-ordered',
|
||||
title: '全部订单',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
export default routes;
|
||||
Reference in New Issue
Block a user