index.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. import {
  2. createRouter,
  3. createWebHistory,
  4. createWebHashHistory,
  5. } from "vue-router";
  6. const constantRouterMap = [
  7. {
  8. path: "/login",
  9. name: "Login",
  10. component: () => import("@/views/login/LoginView.vue"),
  11. meta: {
  12. title: "登录",
  13. },
  14. },
  15. {
  16. path: "/",
  17. name: "theBaseLayout",
  18. component: () => import("@/components/Layout/ThePublicLayout.vue"),
  19. children: [
  20. {
  21. path: "/",
  22. name: "AnalyseView",
  23. component: () => import("@/views/xlht/AnalyseView.vue"),
  24. meta: {
  25. title: "智能国标化验室数据",
  26. },
  27. },
  28. {
  29. path: "medicinal",
  30. name: "MedicinalView",
  31. component: () => import("@/views/control/MedicinalView.vue"),
  32. meta: {
  33. title: "智适应碳源投加",
  34. },
  35. },
  36. ],
  37. },
  38. {
  39. path: '/',
  40. name: 'userLayout',
  41. component: () => import('@/components/Layout/ThePublicLayout.vue'),
  42. children: [
  43. {
  44. path: 'user',
  45. name: 'User',
  46. component: () => import('@/views/user/index.vue'),
  47. meta: {
  48. title: '系统设置'
  49. }
  50. },
  51. ]
  52. },
  53. ];
  54. const router = createRouter({
  55. history: createWebHashHistory(import.meta.env.BASE_URL),
  56. routes: constantRouterMap,
  57. scrollBehavior: () => ({ left: 0, top: 0 }),
  58. });
  59. router.beforeEach((to, from, next) => {
  60. if ( localStorage.getItem('isLogin') ) {
  61. next();
  62. } else {
  63. if (to.path === '/login') {
  64. next();
  65. } else {
  66. next('/login');
  67. }
  68. }
  69. });
  70. export default router;