Browse Source

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

RuoYi 5 years ago
parent
commit
bc827ef377
1 changed files with 2 additions and 1 deletions
  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({