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
4d8d1b47
Commit
4d8d1b47
authored
Sep 28, 2019
by
李志鸣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fea(AVI大屏总图): 新增腻子、中涂、面/色漆作业区跳转路由及区域
parent
8902b668
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
168 additions
and
0 deletions
+168
-0
monitor.js
src/router/modules/monitor.js
+19
-0
ComplexionPaint.vue
src/views/Monitor/components/ComplexionPaint.vue
+17
-0
MiddleCoat.vue
src/views/Monitor/components/MiddleCoat.vue
+17
-0
Putty.vue
src/views/Monitor/components/Putty.vue
+17
-0
index.vue
src/views/Monitor/index.vue
+98
-0
No files found.
src/router/modules/monitor.js
View file @
4d8d1b47
...
@@ -12,6 +12,25 @@ export default {
...
@@ -12,6 +12,25 @@ export default {
component
:
()
=>
import
(
'@/views/Monitor/index'
),
component
:
()
=>
import
(
'@/views/Monitor/index'
),
name
:
'MonitorIndex'
,
name
:
'MonitorIndex'
,
meta
:
{
title
:
'MonitorIndex'
,
icon
:
'kanban'
}
meta
:
{
title
:
'MonitorIndex'
,
icon
:
'kanban'
}
},
{
path
:
'monitorPutty'
,
component
:
()
=>
import
(
'@/views/Monitor/components/Putty'
),
name
:
'MonitorPutty'
,
meta
:
{
title
:
'MonitorPutty'
,
icon
:
'kanban'
},
hidden
:
true
},
{
path
:
'monitorMiddleCoat'
,
component
:
()
=>
import
(
'@/views/Monitor/components/MiddleCoat'
),
name
:
'MonitorMiddleCoat'
,
meta
:
{
title
:
'MonitorMiddleCoat'
,
icon
:
'kanban'
}
},
{
path
:
'monitorComplexionPaint'
,
component
:
()
=>
import
(
'@/views/Monitor/components/ComplexionPaint'
),
name
:
'MonitorComplexionPaint'
,
meta
:
{
title
:
'MonitorComplexionPaint'
,
icon
:
'kanban'
}
}
}
]
]
}
}
src/views/Monitor/components/ComplexionPaint.vue
0 → 100644
View file @
4d8d1b47
<
template
>
<div>
<span>
面/色漆工作区
</span>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
}
}
</
script
>
<
style
>
</
style
>
src/views/Monitor/components/MiddleCoat.vue
0 → 100644
View file @
4d8d1b47
<
template
>
<div>
<span>
中涂作业区
</span>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
}
}
</
script
>
<
style
>
</
style
>
src/views/Monitor/components/Putty.vue
0 → 100644
View file @
4d8d1b47
<
template
>
<div>
<span>
腻子工作区
</span>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{}
}
}
</
script
>
<
style
>
</
style
>
src/views/Monitor/index.vue
View file @
4d8d1b47
...
@@ -139,6 +139,26 @@
...
@@ -139,6 +139,26 @@
<div
class=
"line-6-station-1"
></div>
<div
class=
"line-6-station-1"
></div>
</div>
</div>
</div>
</div>
<!--腻子上半作业区-->
<div
class=
"putty-t-pack"
@
click=
"doPuttyClick"
>
<div></div>
</div>
<!--腻子下半作业区-->
<div
class=
"putty-b-pack"
@
click=
"doPuttyClick"
>
<div></div>
</div>
<!--中涂左作业区-->
<div
class=
"middle-coat-l-pack"
@
click=
"doMiddleCoatClick"
>
<div></div>
</div>
<!--中涂右作业区-->
<div
class=
"middle-coat-r-pack"
@
click=
"doMiddleCoatClick"
>
<div></div>
</div>
<!--面/色漆作业区-->
<div
class=
"complexion-paint-pack"
@
click=
"doComplexionPaintClick"
>
<div></div>
</div>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
@@ -152,6 +172,24 @@
...
@@ -152,6 +172,24 @@
// 点击电泳工作区
// 点击电泳工作区
doElectrophoresisClick
()
{
doElectrophoresisClick
()
{
console
.
log
(
'点击电泳工作区'
)
console
.
log
(
'点击电泳工作区'
)
},
// 点击腻子作业区
doPuttyClick
()
{
this
.
$router
.
push
({
path
:
'/monitor/monitorPutty'
})
},
// 点击中涂作业区
doMiddleCoatClick
()
{
this
.
$router
.
push
({
path
:
'/monitor/monitorMiddleCoat'
})
},
// 点击面/色漆作业区
doComplexionPaintClick
()
{
this
.
$router
.
push
({
path
:
'/monitor/monitorComplexionPaint'
})
}
}
}
}
}
}
...
@@ -953,6 +991,66 @@
...
@@ -953,6 +991,66 @@
}
}
}
}
}
}
// 腻子上半作业区
.putty-t-pack
{
position
:
absolute
;
top
:
562px
;
left
:
786px
;
div
{
width
:
650px
;
height
:
125px
;
}
}
// 腻子下半作业区
.putty-b-pack
{
position
:
absolute
;
top
:
687px
;
left
:
1327px
;
div
{
height
:
32px
;
width
:
109px
;
}
}
// 中涂左作业区
.middle-coat-l-pack
{
position
:
absolute
;
left
:
786px
;
top
:
690px
;
div
{
height
:
120px
;
width
:
530px
;
}
}
// 中涂右作业区
.middle-coat-r-pack
{
position
:
absolute
;
left
:
1327px
;
top
:
722px
;
div
{
height
:
88px
;
width
:
109px
;
}
}
// 面/色漆作业区
.complexion-paint-pack
{
position
:
absolute
;
top
:
816px
;
left
:
690px
;
div
{
height
:
390px
;
width
:
747px
;
}
}
}
}
}
}
</
style
>
</
style
>
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