优化项目细节和sql查询

This commit is contained in:
xuqiuyun
2025-11-28 17:12:36 +08:00
parent 128a4b2c6b
commit e968fcf52a
24 changed files with 1928 additions and 694 deletions

View File

@@ -237,18 +237,6 @@ export const constantRoutes: Array<RouteRecordRaw> = [
requireAuth: true,
},
children: [
{
path: 'loadingOrder', // ✅ 修复:使用相对路径
name: 'LoadingOrder',
meta: {
title: '装车订单',
keepAlive: true,
requireAuth: true,
},
component: () => import('~/views/shipping/loadingOrder.vue'),
},
{
path: 'shippinglist', // ✅ 修复:使用相对路径
name: 'ShippingList',
@@ -259,6 +247,19 @@ export const constantRoutes: Array<RouteRecordRaw> = [
},
component: () => import('~/views/entry/attestation.vue'),
},
{
path: 'loadingOrder', // ✅ 修复:使用相对路径
name: 'LoadingOrder',
meta: {
title: '订单信息',
keepAlive: true,
requireAuth: true,
},
component: () => import('~/views/shipping/loadingOrder.vue'),
},
],
},