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
7fa1e0a7
Commit
7fa1e0a7
authored
Nov 29, 2023
by
“lixuyan”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工时管理的合计和页面样式修改
parent
5984ec87
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
8 deletions
+28
-8
productionTable.vue
...lyPlanManagement/TimeToSee/components/productionTable.vue
+8
-3
temporaryTable.vue
...blyPlanManagement/TimeToSee/components/temporaryTable.vue
+6
-2
index.vue
...-mes/src/views/assemblyPlanManagement/TimeToSee/index.vue
+4
-1
productionTable.vue
...ution/components/TimeToSee/components/productionTable.vue
+5
-1
temporaryTable.vue
...cution/components/TimeToSee/components/temporaryTable.vue
+5
-1
No files found.
applications/dee-mes/src/views/assemblyPlanManagement/TimeToSee/components/productionTable.vue
View file @
7fa1e0a7
...
...
@@ -4,7 +4,6 @@
<dee-table
v-if=
"sumRowShow"
ref=
"table"
:loading=
"loading"
:index-row=
"indexRow"
:columns=
"tableColums"
:data=
"tableData"
...
...
@@ -76,8 +75,8 @@ export default {
tableOptions
:
{
stripe
:
true
,
border
:
true
,
height
:
'
400
'
,
showSummary
:
tru
e
,
height
:
'
64vh
'
,
showSummary
:
fals
e
,
summaryMethod
:
this
.
getSummaries
},
// 表格选中行
...
...
@@ -91,6 +90,11 @@ export default {
},
mounted
()
{
},
updated
()
{
this
.
$nextTick
(()
=>
{
this
.
$refs
[
'table'
].
$refs
[
'deeTable'
].
doLayout
()
})
},
methods
:
{
// 合计
getSummaries
(
param
)
{
...
...
@@ -225,6 +229,7 @@ export default {
this
.
loading
=
false
this
.
$nextTick
(()
=>
{
this
.
sumRowShow
=
true
this
.
tableOptions
.
showSummary
=
true
})
})
},
...
...
applications/dee-mes/src/views/assemblyPlanManagement/TimeToSee/components/temporaryTable.vue
View file @
7fa1e0a7
...
...
@@ -4,7 +4,6 @@
<dee-table
v-if=
"sumRowShow"
ref=
"table"
:loading=
"loading"
:index-row=
"indexRow"
:columns=
"tableColums"
:data=
"tableData"
...
...
@@ -87,7 +86,7 @@ export default {
tableOptions
:
{
stripe
:
true
,
border
:
true
,
height
:
'
400
'
,
height
:
'
64vh
'
,
showSummary
:
true
,
summaryMethod
:
this
.
getSummaries
},
...
...
@@ -112,6 +111,11 @@ export default {
mounted
()
{
// this.init()
},
updated
()
{
this
.
$nextTick
(()
=>
{
this
.
$refs
[
'table'
].
$refs
[
'deeTable'
].
doLayout
()
})
},
methods
:
{
getSummaries
(
param
)
{
this
.
showSummary
=
true
...
...
applications/dee-mes/src/views/assemblyPlanManagement/TimeToSee/index.vue
View file @
7fa1e0a7
...
...
@@ -2,7 +2,7 @@
<section
class=
"time-to-see"
>
<Search
:active-name=
"activeName"
@
init=
"searchData"
/>
<dee-tools
:tools=
"tools"
mode=
"normal"
:collapse=
"false"
/>
<el-tabs
v-model=
"activeName"
type=
"card"
@
tab-click=
"tabClick"
>
<el-tabs
v-model=
"activeName"
type=
"card"
class=
"time-tab"
@
tab-click=
"tabClick"
>
<el-tab-pane
label=
"生产工时"
name=
"product"
>
<ProductionTable
ref=
"productTable"
/>
</el-tab-pane>
...
...
@@ -75,5 +75,8 @@ export default {
top
:
10px
;
z-index
:
99999
;
}
.time-tab
{
height
:
calc
(
100vh
-
100px
);
}
}
</
style
>
applications/dee-mes/src/views/taskExecution/components/TimeToSee/components/productionTable.vue
View file @
7fa1e0a7
...
...
@@ -4,7 +4,6 @@
<dee-table
v-if=
"sumRowShow"
ref=
"table"
:loading=
"loading"
:index-row=
"indexRow"
:columns=
"tableColums"
:data=
"tableData"
...
...
@@ -91,6 +90,11 @@ export default {
},
mounted
()
{
},
updated
()
{
this
.
$nextTick
(()
=>
{
this
.
$refs
[
'table'
].
$refs
[
'deeTable'
].
doLayout
()
})
},
methods
:
{
// 合计
getSummaries
(
param
)
{
...
...
applications/dee-mes/src/views/taskExecution/components/TimeToSee/components/temporaryTable.vue
View file @
7fa1e0a7
...
...
@@ -4,7 +4,6 @@
<dee-table
v-if=
"sumRowShow"
ref=
"table"
:loading=
"loading"
:index-row=
"indexRow"
:columns=
"tableColums"
:data=
"tableData"
...
...
@@ -112,6 +111,11 @@ export default {
mounted
()
{
// this.init()
},
updated
()
{
this
.
$nextTick
(()
=>
{
this
.
$refs
[
'table'
].
$refs
[
'deeTable'
].
doLayout
()
})
},
methods
:
{
getSummaries
(
param
)
{
this
.
showSummary
=
true
...
...
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