init: CATL电池线OCC APP首次入库
This commit is contained in:
73
src/router/index.js
Normal file
73
src/router/index.js
Normal file
@@ -0,0 +1,73 @@
|
||||
import Vue from 'vue'
|
||||
import Router from 'vue-router'
|
||||
|
||||
Vue.use(Router)
|
||||
|
||||
export default new Router({
|
||||
routes: [
|
||||
{
|
||||
path: '/',
|
||||
name: 'login',
|
||||
meta: {
|
||||
keepAlive: false
|
||||
},
|
||||
component: () => import('@/views/login.vue')
|
||||
},
|
||||
{
|
||||
path: '/login1',
|
||||
name: 'login1',
|
||||
meta: {
|
||||
keepAlive: false
|
||||
},
|
||||
component: () => import('@/views/login.vue')
|
||||
},
|
||||
{
|
||||
path: '/main',
|
||||
name: 'main',
|
||||
meta: {
|
||||
keepAlive: true
|
||||
},
|
||||
component: () => import('@/views/main.vue')
|
||||
},
|
||||
{
|
||||
path: '/OccCreate',
|
||||
name: 'OccCreate',
|
||||
meta: {
|
||||
keepAlive: true
|
||||
},
|
||||
component: () => import('@/views/OCC/OccCreate/index.vue')
|
||||
},
|
||||
{
|
||||
path: '/OccSearch',
|
||||
name: 'OccSearch',
|
||||
meta: {
|
||||
keepAlive: true
|
||||
},
|
||||
component: () => import('@/views/OCC/OccSearch/index.vue')
|
||||
},
|
||||
{
|
||||
path: '/OccBase',
|
||||
name: 'OccBase',
|
||||
meta: {
|
||||
keepAlive: true
|
||||
},
|
||||
component: () => import('@/views/OCC/OccBase/index.vue')
|
||||
},
|
||||
{
|
||||
path: '/OccSolve',
|
||||
name: 'OccSolve',
|
||||
meta: {
|
||||
keepAlive: true
|
||||
},
|
||||
component: () => import('@/views/OCC/OccSolve/index.vue')
|
||||
},
|
||||
{
|
||||
path: '/LoadingCard',
|
||||
name: 'LoadingCard',
|
||||
meta: {
|
||||
keepAlive: true
|
||||
},
|
||||
component: () => import('@/views/OCC/LoadingCard/index.vue')
|
||||
}
|
||||
]
|
||||
})
|
||||
Reference in New Issue
Block a user