Browse Source

首页跳转无权限提示

xy 1 week ago
parent
commit
8fbbbd78ab
1 changed files with 7 additions and 0 deletions
  1. 7 0
      yudao-ui-admin-vue3/src/views/Home/Index.vue

+ 7 - 0
yudao-ui-admin-vue3/src/views/Home/Index.vue

@@ -476,6 +476,13 @@ const handleRouteTo = (item: any) => {
   }
 
   if (item.routerName) {
+    // 检查路由是否存在(无菜单权限时路由不会被注册)
+    const routeExists = router.getRoutes().some(r => r.name === item.routerName)
+    if (!routeExists) {
+      ElMessage.warning('暂无权限访问该页面')
+      return
+    }
+
     // 特殊处理任务单跳转:默认带上 inspectorIds 和 taskStatusList 参数
     const query: any = {
       searchUserId: id,