Explorar el Código

路由添加新路径(management、business)

lichao hace 3 años
padre
commit
a41b6c9898
Se han modificado 1 ficheros con 17 adiciones y 0 borrados
  1. 17 0
      src/router/index.js

+ 17 - 0
src/router/index.js

@@ -96,6 +96,23 @@ export default new Router({
         keepAlive: true,
         footer:true
       }
+    },{
+      path: '/management',
+      name: 'management',
+      component: () => import('../views/serviceItems/management'),
+      meta: {
+        keepAlive: true,
+        footer:true
+      }
+    }
+    ,{
+      path: '/business',
+      name: 'business',
+      component: () => import('../views/serviceItems/business'),
+      meta: {
+        keepAlive: true,
+        footer:true
+      }
     }
   ],
 });