From 668e570bd1db6bd00e4293b6977e6d3d051053ce Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期四, 27 十一月 2025 00:07:46 +0800
Subject: [PATCH] feat: 修改app录入界面及车辆用户同步
---
ruoyi-ui/src/router/index.js | 66 +++++++++++++++++++++++++++++++--
1 files changed, 62 insertions(+), 4 deletions(-)
diff --git a/ruoyi-ui/src/router/index.js b/ruoyi-ui/src/router/index.js
index 00013cc..f7295cf 100644
--- a/ruoyi-ui/src/router/index.js
+++ b/ruoyi-ui/src/router/index.js
@@ -58,6 +58,18 @@
meta: { title: '鍖垮悕璁㈠崟鏌ョ湅', icon: 'eye',anonymous: true }
},
{
+ path: '/evaluation',
+ component: () => import('@/views/evaluation/index'),
+ hidden: true,
+ meta: { title: '瀹㈡埛璇勪环', anonymous: true }
+ },
+ {
+ path: '/evaluation/test',
+ component: () => import('@/views/evaluation/test'),
+ hidden: true,
+ meta: { title: '璇勪环鍔熻兘娴嬭瘯', anonymous: true }
+ },
+ {
path: '/404',
component: () => import('@/views/error/404'),
hidden: true
@@ -95,11 +107,43 @@
]
},
{
- path: 'order/detail/:id',
+ path: '/order/detail/:id',
component: () => import('@/views/system/order/detail'),
name: 'OrderDetail',
- meta: { title: '璁㈠崟璇︽儏' },
- hidden: true
+ hidden: true,
+ meta: { title: '璁㈠崟璇︽儏椤�', anonymous: true }
+ },
+ {
+ path: '/anonymous/test',
+ component: () => import('@/views/anonymous/test'),
+ hidden: true,
+ meta: { title: '鍖垮悕璁块棶娴嬭瘯', anonymous: true }
+ }, {
+ path: '/system/gps/map',
+ component: () => import('@/views/system/gps/map'),
+ name: 'GpsMap',
+ hidden: true,
+ meta: { title: '杞﹁締杞ㄨ抗', showMenu: false, icon: 'map' ,anonymous: true}
+ },
+ {
+ path: '/payInfoTest',
+ component: (resolve) => require(['@/views/system/payInfoTest/index'], resolve),
+ hidden: true,
+ meta: { title: '鏀粯淇℃伅娴嬭瘯', anonymous: true }
+ }
+ ,{
+ path: '/system/gps/mapNeed',
+ component: () => import('@/views/system/gps/mapNeed'),
+ name: 'GpsMapNeed',
+ meta: { title: '杞﹁締杞ㄨ抗', icon: 'map' }
+ },
+
+ {
+ path: '/h5/task_create',
+ component: () => import('@/views/task/h5/create'),
+ hidden: false,
+ name: 'H5TaskCreate',
+ meta: { title: '鍒涘缓浠诲姟' }
}
]
@@ -174,6 +218,20 @@
meta: { title: '淇敼鐢熸垚閰嶇疆', activeMenu: '/tool/gen' }
}
]
+ },
+ {
+ path: '/task/general-detail',
+ component: Layout,
+ hidden: true,
+ permissions: ['task:general:query'],
+ children: [
+ {
+ path: 'index/:taskId(\\d+)',
+ component: () => import('@/views/task/general/detail'),
+ name: 'TaskDetail',
+ meta: { title: '浠诲姟璇︽儏', activeMenu: '/task/general' }
+ }
+ ]
}
]
@@ -190,7 +248,7 @@
}
export default new Router({
- mode: 'history', // 鍘绘帀url涓殑#
+ mode: 'history', // 浣跨敤history妯″紡,URL鏇寸編瑙�
scrollBehavior: () => ({ y: 0 }),
routes: constantRoutes
})
--
Gitblit v1.9.1