2024-08-29 09:44:54 +08:00
|
|
|
import Vue from 'vue'
|
|
|
|
|
import VueRouter from 'vue-router'
|
|
|
|
|
import Layout from '../views/layout/index.vue'
|
|
|
|
|
import Login from '../views/login/login.vue'
|
|
|
|
|
import local from '../utils/local'
|
|
|
|
|
|
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
|
|
|
|
|
|
const routes = [
|
2024-08-30 15:32:36 +08:00
|
|
|
{
|
|
|
|
|
path: '/login',
|
|
|
|
|
component: Login,
|
|
|
|
|
meta: { title: '登录', activeMenu: '/login' }
|
|
|
|
|
},
|
|
|
|
|
{
|
2024-08-30 15:40:31 +08:00
|
|
|
// 首页
|
|
|
|
|
path: '/index',
|
2024-08-30 15:32:36 +08:00
|
|
|
component: Layout,
|
2024-08-30 15:40:31 +08:00
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: '/index/index',
|
|
|
|
|
component: () =>
|
|
|
|
|
import('../views/index/index.vue'),
|
|
|
|
|
meta: { title: '首页', activeMenu: '/index/index' }
|
|
|
|
|
}
|
|
|
|
|
]
|
2024-08-30 15:32:36 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
// 遗传病风险
|
|
|
|
|
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: '/geneMgmt',
|
|
|
|
|
component: Layout,
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: '/geneMgmt/SPN',
|
|
|
|
|
component: () =>
|
|
|
|
|
import('../views/geneMgmt/SPN.vue'),
|
|
|
|
|
meta: { title: 'SPN位点管理', activeMenu: '/geneMgmt/SPN' }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/geneMgmt/SPNPanel',
|
|
|
|
|
component: () =>
|
|
|
|
|
import('../views/geneMgmt/SPNPanel.vue'),
|
|
|
|
|
meta: { title: 'SPN Panel位点管理', activeMenu: '/geneMgmt/SPNPanel' }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/geneMgmt/sequence',
|
|
|
|
|
component: () =>
|
|
|
|
|
import('../views/geneMgmt/sequence.vue'),
|
|
|
|
|
meta: { title: '原始测序数据', activeMenu: '/geneMgmt/sequence' }
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
2024-08-29 15:35:56 +08:00
|
|
|
|
2024-08-30 15:32:36 +08:00
|
|
|
{
|
|
|
|
|
// 繁育管理
|
|
|
|
|
path: '/breedMgmt',
|
|
|
|
|
component: Layout,
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: '/breedMgmt/BLUP',
|
|
|
|
|
component: () =>
|
|
|
|
|
import('../views/breedMgmt/BLUP.vue'),
|
|
|
|
|
meta: { title: 'BLUP', activeMenu: '/breedMgmt/BLUP' }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/breedMgmt/paternityTest',
|
|
|
|
|
component: () =>
|
|
|
|
|
import('../views/breedMgmt/paternityTest.vue'),
|
|
|
|
|
meta: { title: '亲子鉴定', activeMenu: '/breedMgmt/paternityTest' }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/breedMgmt/lineage',
|
|
|
|
|
component: () =>
|
|
|
|
|
import('../views/breedMgmt/lineage.vue'),
|
|
|
|
|
meta: { title: '血统管理', activeMenu: '/breedMgmt/lineage' }
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
2024-08-29 15:35:56 +08:00
|
|
|
|
2024-08-30 15:32:36 +08:00
|
|
|
{
|
|
|
|
|
// 进化分析
|
|
|
|
|
path: '/phylogeneticAnalysis',
|
|
|
|
|
component: Layout,
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: '/phylogeneticAnalysis/evolutionaryTree',
|
|
|
|
|
component: () =>
|
|
|
|
|
import('../views/phylogeneticAnalysis/evolutionaryTree.vue'),
|
|
|
|
|
meta: { title: '进化树', activeMenu: '/phylogeneticAnalysis/evolutionaryTree' }
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
// 档案信息
|
|
|
|
|
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' }
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
// 快速查询
|
2024-08-30 14:55:11 +08:00
|
|
|
path: '/quick-Search/quick-Search',
|
2024-08-30 15:32:36 +08:00
|
|
|
component: Layout,
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: '/quick-Search/quick-Search',
|
|
|
|
|
component: () =>
|
|
|
|
|
import('../views/quick-Search/quick-Search.vue'),
|
|
|
|
|
meta: { title: '快速查询', activeMenu: '/quick-Search/quick-Search' }
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
// 品种资源
|
|
|
|
|
path: '/variety-resources',
|
|
|
|
|
component: Layout,
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: '/variety-resources/variety-resources',
|
|
|
|
|
component: () =>
|
|
|
|
|
import('../views/variety-resources/variety-resources.vue'),
|
|
|
|
|
meta: { title: '品种资源', activeMenu: '/variety-resources/variety-resources' }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/variety-resources/pig-list',
|
|
|
|
|
component: () =>
|
|
|
|
|
import('../views/variety-resources/pig-list.vue'),
|
|
|
|
|
meta: { title: '品种猪', activeMenu: '/variety-resources/pig-list' }
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
}
|
2024-08-29 09:44:54 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
const router = new VueRouter({
|
2024-08-30 15:32:36 +08:00
|
|
|
routes
|
2024-08-29 09:44:54 +08:00
|
|
|
})
|
|
|
|
|
// 前置路由守卫
|
|
|
|
|
router.beforeEach((to, from, next) => {
|
2024-08-30 14:55:11 +08:00
|
|
|
const token = local.get('token_sd')
|
|
|
|
|
if (to.meta.title) { // 修改总标题
|
2024-08-30 15:29:32 +08:00
|
|
|
document.title = '基芯农育种' + '-' + to.meta.title // routes数组中--meta是关键
|
2024-08-30 14:55:11 +08:00
|
|
|
}
|
|
|
|
|
if (token) { // ok
|
|
|
|
|
next()
|
|
|
|
|
} else { // no
|
|
|
|
|
if (to.path === '/login') {
|
|
|
|
|
next()
|
|
|
|
|
}
|
2024-08-29 09:44:54 +08:00
|
|
|
}
|
2024-08-30 15:32:36 +08:00
|
|
|
}
|
2024-08-30 15:59:48 +08:00
|
|
|
// next('/login')
|
2024-08-30 15:32:36 +08:00
|
|
|
)
|
2024-08-29 09:44:54 +08:00
|
|
|
export default router
|