From 6676a35122fd9c97d1b1679c211bc8a9b97f08f2 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期二, 24 三月 2026 23:17:37 +0800
Subject: [PATCH] feat: 增加日志记录历史消息
---
ruoyi-ui/src/router/index.js | 121 +++++++++++++++++++++++++++++++++++++++-
1 files changed, 118 insertions(+), 3 deletions(-)
diff --git a/ruoyi-ui/src/router/index.js b/ruoyi-ui/src/router/index.js
index 8f09ae1..59f7fee 100644
--- a/ruoyi-ui/src/router/index.js
+++ b/ruoyi-ui/src/router/index.js
@@ -5,6 +5,7 @@
/* Layout */
import Layout from '@/layout'
+import qywechatRouter from './modules/qywechat'
/**
* Note: 璺敱閰嶇疆椤�
@@ -58,6 +59,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
@@ -106,11 +119,12 @@
component: () => import('@/views/anonymous/test'),
hidden: true,
meta: { title: '鍖垮悕璁块棶娴嬭瘯', anonymous: true }
- },{
+ }, {
path: '/system/gps/map',
component: () => import('@/views/system/gps/map'),
name: 'GpsMap',
- meta: { title: '杞﹁締杞ㄨ抗', icon: 'map' ,anonymous: true}
+ hidden: true,
+ meta: { title: '杞﹁締杞ㄨ抗', showMenu: false, icon: 'map' ,anonymous: true}
},
{
path: '/payInfoTest',
@@ -118,10 +132,97 @@
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: '鍒涘缓浠诲姟' }
+ },
+ {
+ path: '/system/invoice/detail',
+ component: () => import('@/views/system/invoice/detail'),
+ name: 'InvoiceDetail',
+ hidden: true,
+ meta: { title: '鍙戠エ璇︽儏', activeMenu: '/system/invoice' }
+ },
+ {
+ path: '/system/invoice/audit',
+ component: () => import('@/views/system/invoice/audit'),
+ name: 'InvoiceAudit',
+ hidden: true,
+ meta: { title: '瀹℃牳鍙戠エ', activeMenu: '/system/invoice' }
+ },
+ {
+ path: '/system/invoice/apply',
+ component: () => import('@/views/system/invoice/apply'),
+ name: 'InvoiceApply',
+ hidden: true,
+ meta: { title: '鐢宠鍙戠エ', activeMenu: '/system/invoice' }
+ }
]
// 鍔ㄦ�佽矾鐢憋紝鍩轰簬鐢ㄦ埛鏉冮檺鍔ㄦ�佸幓鍔犺浇
export const dynamicRoutes = [
+ qywechatRouter,
+
+ // 缃戠粶璇婃柇璺敱
+ {
+ path: "/system/diag",
+ component: Layout,
+ redirect: "/system/diag/ocrConnection",
+ name: "Diag",
+ meta: {
+ title: "缃戠粶璇婃柇",
+ icon: "link",
+ permissions: ["system:diag:view"]
+ },
+ children: [
+ {
+ path: "ocrConnection",
+ component: () => import("@/views/system/diag/ocrConnection"),
+ name: "OCRConnectionDiag",
+ meta: {
+ title: "OCR杩炴帴璇婃柇",
+ icon: "monitor",
+ permissions: ["system:diag:ocr"]
+ }
+ }
+ ]
+ },
+
+ // 鍖婚櫌鍒嗚瘝娴嬭瘯璺敱
+ {
+ path: "/system/hospital",
+ component: Layout,
+ redirect: "/system/hospital/tokenizer",
+ name: "Hospital",
+ meta: {
+ title: "鍖婚櫌绠$悊",
+ icon: "hospital",
+ permissions: ["system:hospital:view"]
+ },
+ children: [
+ {
+ path: "tokenizer",
+ component: () => import("@/views/system/hospital/tokenizer"),
+ name: "HospitalTokenizer",
+ meta: {
+ title: "鍖婚櫌鍒嗚瘝娴嬭瘯",
+ icon: "search",
+ permissions: ["system:hospital:tokenizer"]
+ }
+ }
+ ]
+ },
+
{
path: '/system/user-auth',
component: Layout,
@@ -191,6 +292,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' }
+ }
+ ]
}
]
@@ -207,7 +322,7 @@
}
export default new Router({
- mode: 'history', // 鍘绘帀url涓殑#
+ mode: 'history', // 浣跨敤history妯″紡,URL鏇寸編瑙�
scrollBehavior: () => ({ y: 0 }),
routes: constantRoutes
})
--
Gitblit v1.9.1