修复bug
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 11m14s

This commit is contained in:
sexygoat
2026-04-08 10:19:25 +08:00
parent ff087abd44
commit b510b4539f
55 changed files with 2274 additions and 2612 deletions

View File

@@ -303,7 +303,7 @@ export const asyncRoutes: AppRouteRecord[] = [
name: 'CarrierManagement',
component: RoutesAlias.CarrierManagement,
meta: {
title: 'menus.account.carrierManagement',
title: 'menus.system.carrierManagement',
keepAlive: true
}
},
@@ -790,7 +790,7 @@ export const asyncRoutes: AppRouteRecord[] = [
name: 'ShopManagement',
component: RoutesAlias.Home,
meta: {
title: 'menus.product.shop',
title: 'menus.shopManagement.title',
icon: ''
},
children: [
@@ -799,7 +799,7 @@ export const asyncRoutes: AppRouteRecord[] = [
name: 'Shop',
component: RoutesAlias.Shop,
meta: {
title: 'menus.product.shop',
title: 'menus.shopManagement.shopList',
keepAlive: true
}
}
@@ -968,11 +968,11 @@ export const asyncRoutes: AppRouteRecord[] = [
},
children: [
{
path: 'single-card',
name: 'SingleCard',
component: RoutesAlias.SingleCard,
path: 'asset-information',
name: 'AssetInformation',
component: RoutesAlias.AssetInformation,
meta: {
title: 'menus.cardManagement.singleCard',
title: 'menus.assetManagement.assetInformation',
keepAlive: true
}
},
@@ -1121,51 +1121,33 @@ export const asyncRoutes: AppRouteRecord[] = [
},
{
path: '/account',
name: 'Finance',
path: '/order-management',
name: 'OrderManagement',
component: RoutesAlias.Home,
meta: {
title: 'menus.account.title',
title: 'menus.orderManagement.title',
icon: ''
},
children: [
// {
// path: 'customer-account',
// name: 'CustomerAccountList',
// component: RoutesAlias.CustomerAccountList,
// meta: {
// title: 'menus.account.customerAccount',
// keepAlive: true
// }
// },
{
path: 'orders',
name: 'OrderManagement',
component: '/order-management/order-list',
path: 'order-list',
name: 'OrderList',
component: RoutesAlias.OrderList,
meta: {
title: 'menus.account.orders',
title: 'menus.orderManagement.orderList',
keepAlive: true
}
},
{
path: 'orders/detail/:id',
path: 'order-list/detail/:id',
name: 'OrderDetail',
component: '/order-management/order-list/detail',
component: RoutesAlias.OrderDetail,
meta: {
title: 'menus.account.orderDetail',
title: 'menus.orderManagement.orderDetail',
isHide: true,
keepAlive: false
}
}
// {
// path: 'my-account',
// name: 'MyAccount',
// component: RoutesAlias.MyAccount,
// meta: {
// title: 'menus.account.myAccount',
// keepAlive: true
// }
// }
]
},