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
79fc2568
Commit
79fc2568
authored
Jan 23, 2024
by
“lixuyan”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改计划开始时间
parent
8bff6e51
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
9 deletions
+24
-9
index.vue
...ivateComponents/components/ReassignWorkersCheck/index.vue
+5
-5
index.vue
...views/assemblyPlanManagement/inspectionDispatch/index.vue
+10
-2
index.vue
...ews/assemblyPlanManagement/instructionsDispatch/index.vue
+9
-2
No files found.
applications/dee-mes/src/privateComponents/components/ReassignWorkersCheck/index.vue
View file @
79fc2568
...
...
@@ -156,11 +156,11 @@ export default {
'children'
:
[
{
'items'
:
[
{
'fieldName'
:
'extStandPositionId'
,
'operator'
:
'EQ'
,
'value'
:
this
.
searchFormData
.
postion
},
//
{
//
'fieldName': 'extStandPositionId',
//
'operator': 'EQ',
//
'value': this.searchFormData.postion
//
},
{
'fieldName'
:
'isValid'
,
'operator'
:
'EQ'
,
...
...
applications/dee-mes/src/views/assemblyPlanManagement/inspectionDispatch/index.vue
View file @
79fc2568
...
...
@@ -199,8 +199,16 @@ export default {
{
title
:
'工时'
,
key
:
'extProcessPlan.workHour'
,
align
:
'left'
},
{
title
:
'计划员'
,
key
:
'planner.name'
,
align
:
'left'
},
{
title
:
'工艺员'
,
key
:
'extProcessPlan.noteName'
,
align
:
'left'
},
{
title
:
'计划开始'
,
key
:
'scheduledStart'
,
align
:
'left'
},
{
title
:
'计划结束'
,
key
:
'scheduledEnd'
,
align
:
'left'
}
{
title
:
'计划开始'
,
key
:
'scheduledStart'
,
align
:
'left'
,
formatter
(
row
,
column
)
{
return
row
.
scheduledStart
?
row
.
scheduledStart
.
substr
(
0
,
10
)
:
''
}
},
{
title
:
'计划结束'
,
key
:
'scheduledEnd'
,
align
:
'left'
,
formatter
(
row
,
column
)
{
return
row
.
scheduledEnd
?
row
.
scheduledEnd
.
substr
(
0
,
10
)
:
''
}
}
],
tableData
:
[],
pagination
:
{
...
...
applications/dee-mes/src/views/assemblyPlanManagement/instructionsDispatch/index.vue
View file @
79fc2568
...
...
@@ -256,8 +256,15 @@ export default {
{
title
:
'工时'
,
key
:
'extProcessPlan.workHour'
,
align
:
'left'
},
{
title
:
'计划员'
,
key
:
'planner.name'
,
align
:
'left'
},
{
title
:
'工艺员'
,
key
:
'extProcessPlan.noteName'
,
align
:
'left'
},
{
title
:
'计划开始'
,
key
:
'scheduledStart'
,
align
:
'left'
},
{
title
:
'计划结束'
,
key
:
'scheduledEnd'
,
align
:
'left'
}
{
title
:
'计划开始'
,
key
:
'scheduledStart'
,
align
:
'left'
,
formatter
(
row
,
column
)
{
return
row
.
scheduledStart
?
row
.
scheduledStart
.
substr
(
0
,
10
)
:
''
}
},
{
title
:
'计划结束'
,
key
:
'scheduledEnd'
,
align
:
'left'
,
formatter
(
row
,
column
)
{
return
row
.
scheduledEnd
?
row
.
scheduledEnd
.
substr
(
0
,
10
)
:
''
}
}
],
tableData
:
[],
pagination
:
{
...
...
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