Browse Source

无法匹配到的页面返回跳转至404页,防止整个页面显示空白

RuoYi 5 năm trước cách đây
mục cha
commit
bc827ef377
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      ruoyi-ui/src/router/index.js

+ 2 - 1
ruoyi-ui/src/router/index.js

@@ -93,7 +93,8 @@ export const constantRoutes = [
         meta: { title: '修改生成配置' }
       }
     ]
-  }
+  },
+  { path: '*', redirect: '/404', hidden: true }
 ]
 
 export default new Router({