Commit 0f0fae43 authored by 李志鸣's avatar 李志鸣

fea(系统路由): 新增 【化验室数据】酸化-磷化线槽液日常检测报告 【化验室数据】电泳槽液日常检测报告 【化验室数据】前处理槽液日常检测报告

parent 2e25f294
...@@ -16,6 +16,11 @@ export default { ...@@ -16,6 +16,11 @@ export default {
Chassis: '底盘车间', Chassis: '底盘车间',
Final: '总装车间', Final: '总装车间',
Trial: '试交车间', Trial: '试交车间',
// 化验室数据
Laboratory: '化验室数据',
Pickling: '酸化-磷化线槽液日常监测报告',
ElectrophoresisTank: '电泳槽液日常检测报告',
Pretreatment: '前处理槽液日常检测报告',
// 设备运行时间 // 设备运行时间
DeviceRunning: '设备运行时间', DeviceRunning: '设备运行时间',
DeviceRunningTime: '设备运行时间', DeviceRunningTime: '设备运行时间',
......
...@@ -15,6 +15,8 @@ import Router from 'vue-router' ...@@ -15,6 +15,8 @@ import Router from 'vue-router'
import welcomeRouter from './modules/welcome' import welcomeRouter from './modules/welcome'
// 车间(设备数据) // 车间(设备数据)
import workshopRouter from './modules/workshop' import workshopRouter from './modules/workshop'
// 化验室数据
import laboratoryRouter from './modules/laboratory'
// 设备运行时间 // 设备运行时间
import deviceRunningTimeRouter from './modules/deviceRunning' import deviceRunningTimeRouter from './modules/deviceRunning'
// 基础数据 // 基础数据
...@@ -65,6 +67,7 @@ export const constantRouterMap = [{ ...@@ -65,6 +67,7 @@ export const constantRouterMap = [{
export const asyncRouterMap = [ export const asyncRouterMap = [
welcomeRouter, welcomeRouter,
workshopRouter, workshopRouter,
laboratoryRouter,
deviceRunningTimeRouter, deviceRunningTimeRouter,
basicRouter, basicRouter,
monitorRouter, monitorRouter,
......
export default {
path: '/laboratory',
component: () => import('@/views/Layout'),
redirect: '/laboratory/pickling',
meta: {title: 'Laboratory', icon: 'template'},
alwaysShow: true,
children: [
{
path: 'pickling',
component: () => import('@/views/Laboratory/Pickling/list'),
name: 'Pickling',
meta: { title: 'Pickling', icon: 'template', noCache: false }
},
{
path: 'electrophoresisTank',
component: () => import('@/views/Laboratory/ElectrophoresisTank/list'),
name: 'ElectrophoresisTank',
meta: { title: 'ElectrophoresisTank', icon: 'template', noCache: false }
},
{
path: 'pretreatment',
component: () => import('@/views/Laboratory/Pretreatment/list'),
name: 'Pretreatment',
meta: { title: 'Pretreatment', icon: 'template', noCache: false }
}
]
}
<template>
<div class="page-pack">电泳槽</div>
</template>
<script>
export default {
data () {
return {}
}
}
</script>
<style lang="scss" scoped>
</style>
\ No newline at end of file
<template>
<div class="page-pack">酸洗</div>
</template>
<script>
export default {
data () {
return {}
}
}
</script>
<style lang="scss" scoped>
</style>
\ No newline at end of file
<template>
<div class="page-pack">前处理</div>
</template>
<script>
export default {
data () {
return {}
}
}
</script>
<style lang="scss" scoped>
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment