Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TF-MOM-WEB
Project
Project
Details
Activity
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
TFMOM
TF-MOM-WEB
Commits
b34796b3
Commit
b34796b3
authored
Sep 10, 2024
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
看板增加架次太多的情况下点击省略号展示全部架次
parent
46aa7496
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
6 deletions
+77
-6
ProductionKanban.vue
...eComponents/components/Visualization/ProductionKanban.vue
+77
-6
No files found.
applications/dee-mes/src/privateComponents/components/Visualization/ProductionKanban.vue
View file @
b34796b3
...
...
@@ -4,10 +4,11 @@
<
template
>
<div
style=
"height:100%;width:100%"
>
<div
class=
"production-kanban"
>
<header>
<header
v-if=
"!showOverlay"
>
<div
v-for=
"item in
sortiesData
"
v-for=
"item in
displayedFlights
"
:key=
"item.aircraftSorties.defCode"
class=
"flight-item"
:class=
"
sortiesRow.aircraftSorties.defCode === item.aircraftSorties.defCode ? 'cur' : ''
"
...
...
@@ -15,7 +16,22 @@
>
{{
item
.
aircraftSorties
.
defCode
}}
</div>
<div
v-if=
"hasMoreFlights"
class=
"ellipsis"
@
click=
"toggleOverlay"
>
···
</div>
</header>
<div
v-else
class=
"overlay"
>
<h2
class=
"allFightTitle"
>
全部架次
</h2>
<div
v-for=
"item in sortiesData"
:key=
"item.aircraftSorties.defCode"
:class=
"
sortiesRow.aircraftSorties.defCode === item.aircraftSorties.defCode ? 'cur' : ''
"
class=
"overlay-item"
@
click=
"selectFlight(item)"
>
{{
item
.
aircraftSorties
.
defCode
}}
</div>
</div>
<div
v-for=
"item in stationData"
:key=
"item.serialNumber"
...
...
@@ -187,7 +203,8 @@ export default {
}
],
JobPlanExecutionQueryParams
:
{},
erd
:
elementResizeDetectorMaker
()
erd
:
elementResizeDetectorMaker
(),
showOverlay
:
false
}
},
computed
:
{
...
...
@@ -211,6 +228,13 @@ export default {
},
isFullscreen
()
{
return
this
.
$store
.
state
.
storeFull
.
isFullscreen
},
// 默认最多展示十三个
displayedFlights
()
{
return
this
.
sortiesData
.
slice
(
0
,
13
)
},
hasMoreFlights
()
{
return
this
.
sortiesData
.
length
>
13
}
},
created
()
{},
...
...
@@ -467,6 +491,20 @@ export default {
}
else
if
(
document
.
webkitExitFullscreen
)
{
document
.
webkitExitFullscreen
()
}
},
toggleOverlay
()
{
this
.
showOverlay
=
true
},
selectFlight
(
flightObj
)
{
this
.
selectSorties
(
flightObj
.
aircraftSorties
.
defCode
)
const
index
=
this
.
sortiesData
.
findIndex
(
data
=>
{
return
data
.
aircraftSorties
.
defCode
===
flightObj
.
aircraftSorties
.
defCode
})
if
(
index
>
0
)
{
this
.
sortiesData
.
splice
(
index
,
1
)
this
.
sortiesData
.
unshift
(
flightObj
)
this
.
showOverlay
=
false
}
}
}
}
...
...
@@ -494,9 +532,40 @@ position: relative;
>
header
{
position
:
absolute
;
display
:
flex
;
top
:
90
px
;
top
:
103
px
;
left
:
100px
;
>
div
{
.ellipsis
{
width
:
65px
;
height
:
65px
;
line-height
:
65px
;
font-size
:
30px
;
font-weight
:
700
;
color
:
#999
;
cursor
:
pointer
;
}
}
.overlay
{
position
:
absolute
;
top
:
60px
;
left
:
70px
;
width
:
1200px
;
position
:
absolute
;
background-color
:
rgba
(
6
,
24
,
26
,
0
.8
);
display
:
flex
;
flex-wrap
:
wrap
;
align-items
:
flex-end
;
z-index
:
99
;
padding-top
:
10px
;
padding-left
:
30px
;
border-radius
:
6px
;
.allFightTitle
{
width
:
100%
;
margin-bottom
:
10px
;
font-size
:
20px
;
color
:
#D9EBEC
;
}
}
.flight-item
,
.overlay-item
{
width
:
65px
;
height
:
65px
;
background-image
:
url("../../../assets/看板/按钮灰.png")
;
...
...
@@ -520,7 +589,9 @@ position: relative;
margin-right
:
25px
;
}
}
}
.overlay-item
{
margin-bottom
:
20px
;
}
>
.station
{
position
:
absolute
;
// width: 170px;
...
...
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