feat: 订单列表

This commit is contained in:
2025-10-16 16:32:59 +08:00
parent a5b7207f44
commit 3c7473f8d1
48 changed files with 1917 additions and 624 deletions

View File

@@ -13,70 +13,41 @@
export default [
{
path: "/user",
path: '/user',
layout: false,
routes: [
{
name: "login",
path: "/user/login",
component: "./user/login",
name: 'login',
path: '/user/login',
component: './user/login',
},
],
},
{
path: "/welcome",
name: "welcome",
icon: "smile",
component: "./Welcome",
path: '/welcome',
name: 'welcome',
icon: 'smile',
component: './Welcome',
},
// {
// path: "/system1",
// name: "system1",
// icon: "smile",
// routes: [
// {
// name: "tenant",
// path: "/system1/tenant",
// routes: [
// {
// name: "package",
// path: "/system1/tenant/package",
// component: "system/tenant/package",
// },
// ],
// },
// ],
// },
{
path: "/admin",
name: "admin",
icon: "crown",
access: "canAdmin",
path: '/',
redirect: '/welcome',
},
{
path: '/trade',
name: '交易管理',
routes: [
{
path: "/admin",
redirect: "/admin/sub-page",
},
{
path: "/admin/sub-page",
name: "sub-page",
component: "./Admin",
name: '订单管理',
path: '/trade',
component: './trade/order/index',
},
],
},
// {
// name: 'list.table-list',
// icon: 'table',
// path: '/list',
// component: './table-list',
// },
{
path: "/",
redirect: "/welcome",
},
{
component: "404",
component: '404',
layout: false,
path: "*",
path: '*',
},
];