Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
zhongtong-avi-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
中通客车项目
zhongtong-avi-web
Commits
0f0fae43
Commit
0f0fae43
authored
Oct 20, 2019
by
李志鸣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fea(系统路由): 新增 【化验室数据】酸化-磷化线槽液日常检测报告 【化验室数据】电泳槽液日常检测报告 【化验室数据】前处理槽液日常检测报告
parent
2e25f294
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
80 additions
and
0 deletions
+80
-0
route.js
src/lang/zh/route.js
+5
-0
index.js
src/router/index.js
+3
-0
laboratory.js
src/router/modules/laboratory.js
+27
-0
list.vue
src/views/Laboratory/ElectrophoresisTank/list.vue
+15
-0
list.vue
src/views/Laboratory/Pickling/list.vue
+15
-0
list.vue
src/views/Laboratory/Pretreatment/list.vue
+15
-0
No files found.
src/lang/zh/route.js
View file @
0f0fae43
...
@@ -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
:
'设备运行时间'
,
...
...
src/router/index.js
View file @
0f0fae43
...
@@ -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
,
...
...
src/router/modules/laboratory.js
0 → 100644
View file @
0f0fae43
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
}
}
]
}
src/views/Laboratory/ElectrophoresisTank/list.vue
0 → 100644
View file @
0f0fae43
<
template
>
<div
class=
"page-pack"
>
电泳槽
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
\ No newline at end of file
src/views/Laboratory/Pickling/list.vue
0 → 100644
View file @
0f0fae43
<
template
>
<div
class=
"page-pack"
>
酸洗
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
\ No newline at end of file
src/views/Laboratory/Pretreatment/list.vue
0 → 100644
View file @
0f0fae43
<
template
>
<div
class=
"page-pack"
>
前处理
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment