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
62a03fa7
Commit
62a03fa7
authored
Apr 24, 2024
by
15008242619
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工作包bug修改及派工页面列表增加工作包字段
parent
c0015b3c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
4 deletions
+31
-4
index.vue
...ment/instructionIdentification/components/right/index.vue
+2
-1
index.vue
...ews/assemblyPlanManagement/instructionsDispatch/index.vue
+29
-3
No files found.
applications/dee-mes/src/views/assemblyPlanManagement/instructionIdentification/components/right/index.vue
View file @
62a03fa7
...
...
@@ -344,7 +344,6 @@ export default {
created
()
{
this
.
jurisdId
=
this
.
$route
.
query
.
taskDefinitionKey
this
.
getTools
()
console
.
log
(
1
)
},
mounted
()
{
this
.
$bus
.
$on
(
'getPlanData'
,
(
data
,
level
)
=>
{
...
...
@@ -370,6 +369,8 @@ export default {
* 工作包选项数据
*/
getWPOptions
(
data
)
{
this
.
wpOptions
=
[]
this
.
wpDictionary
=
[]
const
params
=
{
'pageFrom'
:
1
,
'pageSize'
:
9999
,
...
...
applications/dee-mes/src/views/assemblyPlanManagement/instructionsDispatch/index.vue
View file @
62a03fa7
...
...
@@ -14,7 +14,7 @@
</el-select>
</el-form-item>
</el-col>
-->
<el-col
:span=
"
6
"
>
<el-col
:span=
"
5
"
>
<el-form-item
label=
"班组:"
>
<el-select
v-model=
"searchFormData.group"
placeholder=
"班组"
@
change=
"changeGroup"
>
<el-option
...
...
@@ -43,6 +43,11 @@
<el-input
v-model=
"searchFormData.aoName"
clearable
placeholder=
"请输入AO(号/名称)"
/>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"工作包名称:"
>
<el-input
v-model=
"searchFormData.wpName"
clearable
placeholder=
"请输入工作包名称"
/>
</el-form-item>
</el-col>
<el-col
:span=
"2"
>
<el-button
type=
"primary"
...
...
@@ -194,7 +199,8 @@ export default {
group
:
''
,
postion
:
''
,
aoName
:
''
,
sorties
:
''
sorties
:
''
,
wpName
:
''
},
groupList
:
[],
groupUserList
:
[],
...
...
@@ -252,6 +258,7 @@ export default {
{
title
:
'机型'
,
key
:
'extProcessPlan.planeType'
,
align
:
'left'
},
{
title
:
'架次'
,
key
:
'extProcessPlan.sorties'
,
align
:
'left'
},
{
title
:
'站位'
,
key
:
'extProcessPlan.positionNumber'
,
align
:
'left'
},
{
title
:
'工作包名称'
,
key
:
'extProcessPlan.extWorkPackageLinks[0].source.name'
,
align
:
'left'
},
{
title
:
'工时定额'
,
key
:
'extProcessPlan.opHour'
,
align
:
'left'
},
{
title
:
'工时'
,
key
:
'extProcessPlan.workHour'
,
align
:
'left'
},
{
title
:
'计划员'
,
key
:
'planner.name'
,
align
:
'left'
},
...
...
@@ -608,7 +615,17 @@ export default {
},
'openProps'
:
[
{
'name'
:
'extProcessPlan'
'name'
:
'extProcessPlan'
,
'openProps'
:
[
{
'name'
:
'extWorkPackageLinks'
,
'openProps'
:
[
{
'name'
:
'source'
}
]
}
]
},
{
'name'
:
'cooperatives'
...
...
@@ -628,6 +645,15 @@ export default {
'value'
:
this
.
searchFormData
.
sorties
})
}
if
(
this
.
searchFormData
.
wpName
)
{
params
.
searchItems
.
children
[
0
].
items
.
push
(
{
'fieldName'
:
'extProcessPlan.extWorkPackageLinks.source.name'
,
'operator'
:
'LIKE'
,
'value'
:
this
.
searchFormData
.
wpName
}
)
}
post
(
'/JoExecutePlan/search'
,
params
).
then
(
res
=>
{
if
(
res
.
items
&&
res
.
items
.
content
)
{
this
.
tableData
=
res
.
items
.
content
...
...
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