|
@@ -1,11 +1,18 @@
|
|
|
-import Vue from 'vue'
|
|
|
-import Router from 'vue-router'
|
|
|
+import Vue from "vue";
|
|
|
+import Router from "vue-router";
|
|
|
|
|
|
-Vue.use(Router)
|
|
|
+Vue.use(Router);
|
|
|
|
|
|
/* Layout */
|
|
|
|
|
|
-import Layout from '@/layout'
|
|
|
+import Layout from "@/layout";
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+// 引入总览中的子页面
|
|
|
+
|
|
|
+import chidRoutes from "@/views/dashboard/data/childRoute.js"
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* Note: sub-menu only appear when route children.length >= 1
|
|
@@ -724,33 +731,42 @@ import Layout from '@/layout'
|
|
|
|
|
|
export const mainRoutes = [
|
|
|
{
|
|
|
- path: '/login',
|
|
|
- component: () => import('@/views/login/index'),
|
|
|
- hidden: true
|
|
|
+ path: "/login",
|
|
|
+ component: () => import("@/views/login/index"),
|
|
|
+ hidden: true,
|
|
|
},
|
|
|
{
|
|
|
- path: '/404',
|
|
|
- component: () => import('@/views/404'),
|
|
|
- hidden: true
|
|
|
+ path: "/404",
|
|
|
+ component: () => import("@/views/404"),
|
|
|
+ hidden: true,
|
|
|
},
|
|
|
{
|
|
|
- path: '/',
|
|
|
+ path: "/",
|
|
|
component: Layout,
|
|
|
- redirect: '/dashboard',
|
|
|
+ redirect: "/dashboard",
|
|
|
meta: {
|
|
|
- title: '总览',
|
|
|
- icon: 'el-icon-monitor'
|
|
|
+ title: "总览",
|
|
|
+ icon: "el-icon-monitor",
|
|
|
},
|
|
|
- children: [ {
|
|
|
- path: 'dashboard',
|
|
|
- name: 'dashboard',
|
|
|
- component: () => import('@/views/dashboard/index.vue'),
|
|
|
- meta: {
|
|
|
- title: '总览',
|
|
|
- icon: 'el-icon-monitor'
|
|
|
- }
|
|
|
- } ]
|
|
|
- }
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: "dashboard",
|
|
|
+ name: "dashboard",
|
|
|
+ component: () => import("@/views/dashboard/index.vue"),
|
|
|
+ meta: {
|
|
|
+ title: "总览",
|
|
|
+ icon: "el-icon-monitor",
|
|
|
+ }
|
|
|
+ },
|
|
|
+ ...chidRoutes
|
|
|
+ // {
|
|
|
+ // path: "/marketingManagement",
|
|
|
+ // hidden:true,
|
|
|
+ // name: "marketingManagement",
|
|
|
+ // component: () => import("@/views/account/index.vue"),
|
|
|
+ // },
|
|
|
+ ],
|
|
|
+ },
|
|
|
// {
|
|
|
// path: '/marketingManagement',
|
|
|
// component: Layout,
|
|
@@ -771,23 +787,24 @@ export const mainRoutes = [
|
|
|
// }
|
|
|
// } ]
|
|
|
// }
|
|
|
-]
|
|
|
+];
|
|
|
|
|
|
-const createRouter = () => new Router({
|
|
|
- // mode: 'history', // require service support
|
|
|
- scrollBehavior: () => ({
|
|
|
- y: 0
|
|
|
- }),
|
|
|
- // routes: constantRoutes
|
|
|
- routes: mainRoutes
|
|
|
-})
|
|
|
+const createRouter = () =>
|
|
|
+ new Router({
|
|
|
+ // mode: 'history', // require service support
|
|
|
+ scrollBehavior: () => ({
|
|
|
+ y: 0,
|
|
|
+ }),
|
|
|
+ // routes: constantRoutes
|
|
|
+ routes: mainRoutes,
|
|
|
+ });
|
|
|
|
|
|
-const router = createRouter()
|
|
|
+const router = createRouter();
|
|
|
|
|
|
// Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465
|
|
|
export function resetRouter() {
|
|
|
- const newRouter = createRouter()
|
|
|
- router.matcher = newRouter.matcher // reset router
|
|
|
+ const newRouter = createRouter();
|
|
|
+ router.matcher = newRouter.matcher; // reset router
|
|
|
}
|
|
|
|
|
|
-export default router
|
|
|
+export default router;
|