diff --git a/src/router/index.js b/src/router/index.js
index d5e64af..6c9d7a9 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -7,6 +7,7 @@ import local from '../utils/local'
Vue.use(VueRouter)
const routes = [
+<<<<<<< HEAD
{
path: '/login',
component: Login,
@@ -96,25 +97,89 @@ const routes = [
},
]
},
+=======
+ {
+ path: '/login',
+ component: Login,
+ meta: { title: '登录', activeMenu: '/login' }
+ },
+ {
+ path: '/',
+ component: Layout,
+ redirect: '/disease-resistance/disease-resistance',
+ meta: { title: '', activeMenu: '/disease-resistance/disease-resistance' }
+ }, {
+ // 首页
+ path: '/index',
+ component: Layout,
+ children: [
+ {
+ path: '/index/index',
+ component: () =>
+ import('../views/index/index.vue'),
+ meta: { title: '首页', activeMenu: '/index/index' }
+ }
+ ]
+ },
+ {
+ // 遗传病风险
+ path: '/disease-resistance',
+ component: Layout,
+ children: [
+ {
+ path: '/disease-resistance/disease-resistance',
+ component: () =>
+ import('../views/disease-resistance/disease-resistance.vue'),
+ meta: { title: '遗传病风险', activeMenu: '/disease-resistance/disease-resistance' }
+ }
+ ]
+ },
+ {
+ // 档案信息
+ path: '/archive-information',
+ component: Layout,
+ children: [
+ {
+ path: '/archive-information/archive-information',
+ component: () =>
+ import('../views/archive-information/archive-information.vue'),
+ meta: { title: '档案信息', activeMenu: '/archive-information/archive-information' }
+ }
+ ]
+ },
+ {
+ // 快速查询
+ path: '/quick-Search/quick-Search',
+ component: Layout,
+ children: [
+ {
+ path: '/quick-Search/quick-Search',
+ component: () =>
+ import('../views/quick-Search/quick-Search.vue'),
+ meta: { title: '快速查询', activeMenu: '/quick-Search/quick-Search' }
+ }
+ ]
+ }
+>>>>>>> d14b2f2f812d1e29c7e72c864828024a3008a9a6
]
const router = new VueRouter({
- routes
+ routes
})
// 前置路由守卫
router.beforeEach((to, from, next) => {
- // to到哪里取 from 从哪里来 next 放行
- const token = local.get('token_sd')
- if (to.meta.title) { // 修改总标题
- document.title = '肉牛溯源系统' + '-' + to.meta.title // routes数组中--meta是关键
- }
- if (token) { // ok
- next()
- } else { // no
- if (to.path === '/login') {
- next()
+ // to到哪里取 from 从哪里来 next 放行
+ const token = local.get('token_sd')
+ if (to.meta.title) { // 修改总标题
+ document.title = '肉牛溯源系统' + '-' + to.meta.title // routes数组中--meta是关键
+ }
+ if (token) { // ok
+ next()
+ } else { // no
+ if (to.path === '/login') {
+ next()
+ }
+ next('/login')
}
- next('/login')
- }
})
export default router
diff --git a/src/views/layout/left-menu.vue b/src/views/layout/left-menu.vue
index d747963..c475833 100644
--- a/src/views/layout/left-menu.vue
+++ b/src/views/layout/left-menu.vue
@@ -23,6 +23,10 @@
:default-active="activeIndex"
:unique-opened="true"
>
+
+
+ 首页
+
遗传病风险
@@ -62,6 +66,14 @@
>
+
+
+ 档案信息
+
+
+
+ 快速查询
+