北京经济技术开发区经开区虚拟城市项目-【前端】-Web
lixuliang
2024-04-12 dbb352c9d988dfac83da979023fe81a0a02f88e9
src/router/index.js
@@ -30,12 +30,13 @@
];
const router = new Router({
  mode: "history",
  // base: '/SW',//测试版 打包时解开
  base: '/TEST',//测试版 打包时解开
  // base: '/YZXNCS',//正式版 打包时解开
  base: '/SW',//测试版 打包时解开
  routes,
});
router.beforeEach((to, from, next) => {
  // next();
  // next();
  // 去登录页,直接跳转
  if (to.path === "/login") {
    next();
@@ -56,7 +57,6 @@
        // 去index,有token,没过期,进入系统
        next();
      }
    }
  }
})