init: CATL电池线OCC APP首次入库

This commit is contained in:
XingCheng3
2026-06-08 17:11:58 +08:00
commit 3b4a765c06
75 changed files with 55764 additions and 0 deletions

73
src/router/index.js Normal file
View 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')
}
]
})