Quellcode durchsuchen

管理后台-router配置代码回滚

panyong vor 3 Jahren
Ursprung
Commit
c846c442bd

+ 0 - 1
htmldev/manage/src/router/import-development.js

@@ -1 +0,0 @@
-module.exports = file => require('@/' + file + '.vue').default

+ 0 - 1
htmldev/manage/src/router/import-production.js

@@ -1 +0,0 @@
-module.exports = file => () => import('@/' + file + '.vue')

+ 9 - 9
htmldev/manage/src/router/index.js

@@ -24,7 +24,7 @@ import Layout from '@/layout'
     activeMenu: '/example/list'  if set path, the sidebar will highlight the path you set
   }
  */
-const _import = require('./import-' + process.env.NODE_ENV)
+
 /**
  * constantRoutes
  * a base page that does not have permission requirements
@@ -33,13 +33,13 @@ const _import = require('./import-' + process.env.NODE_ENV)
 export const constantRoutes = [
   {
     path: '/login',
-    component: _import('views/login/index'),
+    component: () => import('@/views/login/index'),
     hidden: true
   },
 
   {
     path: '/404',
-    component: _import('views/404'),
+    component: () => import('@/views/404'),
     hidden: true
   }
 ]
@@ -52,7 +52,7 @@ export const asyncRoutes = [
     children: [{
       path: 'dashboard',
       name: 'Dashboard',
-      component: _import('views/dashboard/index'),
+      component: () => import('@/views/dashboard/index'),
       meta: { title: '首页', icon: 'dashboard' }
     }]
   },
@@ -65,7 +65,7 @@ export const asyncRoutes = [
     children: [{
       path: 'list',
       name: 'project',
-      component: _import('views/project/index'),
+      component: () => import('@/views/project/index'),
       meta: { title: '项目列表', roleValue: 'project_list_show' }
     }]
   },
@@ -77,7 +77,7 @@ export const asyncRoutes = [
     children: [{
       path: 'list',
       name: 'department',
-      component: _import('views/department/index'),
+      component: () => import('@/views/department/index'),
       meta: { title: '部门列表', roleValue: 'department_list_show' }
     }]
   },
@@ -89,7 +89,7 @@ export const asyncRoutes = [
     children: [{
       path: 'list',
       name: 'roles',
-      component: _import('views/roles/index'),
+      component: () => import('@/views/roles/index'),
       meta: { title: '角色列表', roleValue: 'roles_list_show' }
     }]
   },
@@ -101,7 +101,7 @@ export const asyncRoutes = [
     children: [{
       path: 'list',
       name: 'user',
-      component: _import('views/user/index'),
+      component: () => import('@/views/user/index'),
       meta: { title: '用户列表', roleValue: 'user_list_show' }
     }]
   },
@@ -113,7 +113,7 @@ export const asyncRoutes = [
     children: [{
       path: 'list',
       name: 'icon',
-      component: _import('views/icons/index'),
+      component: () => import('@/views/icons/index'),
       meta: { title: 'icon', icon: 'el-icon-s-grid' }
     }]
   },