Commit abb5a4b6 authored by 纪泽龙's avatar 纪泽龙

Merge branch 'jzl'

parents a109d483 65e2a1cd
/*
* @Author: 纪泽龙 jizelong@qq.com
* @Date: 2023-01-03 15:13:41
* @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2023-01-16 09:19:38
* @FilePath: /danger-manage-web/src/permission.js
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
import router from "./router";
import store from "./store";
import { Message } from "element-ui";
......@@ -29,7 +37,14 @@ router.beforeEach((to, from, next) => {
console.log(accessRoutes);
// 如果这个值是0,就不展示首页,展示最近的页面
if (store.getters.systemSetting.show_index === "0") {
router.options.routes[4].children[0].hidden = true;
// if(1){
// 过滤到首页的路由
const origin = router.options.routes.find(item=>{
return item.redirect==='index'
})
// 隐藏
origin.children[0].hidden = true;
// 挑战
if (accessRoutes[0].children) {
next({ ...accessRoutes[0].children[0] });
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment