feat(project): implement all-orders page with modular structure
All checks were successful
Build and Deploy TenantUI / build-and-deploy (push) Successful in 55s

This commit is contained in:
2026-02-27 10:19:10 +08:00
parent f2c50f69d1
commit 50877b6ba9
21 changed files with 1560 additions and 0 deletions

View 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;