Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
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
mes
mes-ui
Commits
faa6b469
Commit
faa6b469
authored
Jan 24, 2024
by
李驰骋
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
9723aa0d
64b7d882
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
4 deletions
+30
-4
indexApply.vue
src/views/mes/pro/workorder/indexApply.vue
+7
-3
proofingInfo.vue
src/views/mes/pro/workorder/proofingInfo.vue
+23
-1
No files found.
src/views/mes/pro/workorder/indexApply.vue
View file @
faa6b469
...
...
@@ -155,6 +155,7 @@
<dict-tag
:options=
"dict.type.mes_workorder_sourcetype"
:value=
"scope.row.orderSource"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"工艺名称"
width=
"140"
align=
"center"
prop=
"routeName"
/>
<el-table-column
label=
"订单编号"
width=
"140"
align=
"center"
prop=
"sourceCode"
/>
<el-table-column
label=
"产品编号"
width=
"120"
align=
"center"
prop=
"productCode"
/>
<el-table-column
label=
"产品名称"
width=
"200"
align=
"center"
prop=
"productName"
:show-overflow-tooltip=
"true"
/>
...
...
@@ -295,14 +296,14 @@
<
/el-select
>
<
/el-form-item
>
<
/el-col
>
<
el
-
col
:
span
=
"8"
>
<
!--
<
el
-
col
:
span
=
"8"
>
<
el
-
form
-
item
label
=
"产品编号"
prop
=
"productCode"
>
<
el
-
input
v
-
model
=
"form.productCode"
placeholder
=
"请选择产品"
>
<
el
-
button
slot
=
"append"
@
click
=
"handleSelectProduct"
icon
=
"el-icon-search"
><
/el-button
>
<
/el-input
>
<
ItemSelect
ref
=
"itemSelect"
@
onSelected
=
"onItemSelected"
>
<
/ItemSelect
>
<
/el-form-item
>
<
/el-col
>
<
/el-col>
--
>
<
el
-
col
:
span
=
"8"
>
<
el
-
form
-
item
label
=
"产品名称"
prop
=
"productName"
>
<
el
-
input
v
-
model
=
"form.productName"
placeholder
=
"请选择产品"
disabled
/>
...
...
@@ -463,6 +464,7 @@ export default {
productCode
:
null
,
productName
:
null
,
productSpc
:
null
,
routeName
:
null
,
unitOfMeasure
:
null
,
quantity
:
null
,
quantityProduced
:
null
,
...
...
@@ -561,6 +563,7 @@ export default {
productCode
:
null
,
productName
:
null
,
productSpc
:
null
,
routeName
:
null
,
unitOfMeasure
:
null
,
quantity
:
null
,
quantityProduced
:
null
,
...
...
@@ -636,10 +639,11 @@ export default {
handleView
(
row
){
this
.
reset
();
this
.
getTreeselect
();
const
workorderId
=
row
.
workorderId
||
this
.
ids
;
this
.
$router
.
push
(
"/mes/pro/workorder/info?workorderId="
+
workorderId
);
// this.reset();
// this.getTreeselect();
// const workorderId = row.workorderId || this.ids;
...
...
src/views/mes/pro/workorder/proofingInfo.vue
View file @
faa6b469
...
...
@@ -101,6 +101,26 @@
</el-col>
</el-row>
<el-row>
<el-col
:md=
"8"
:xs=
"12"
style=
"height: 50.5px"
>
<el-form-item
label=
"工艺名称"
prop=
"routeId"
>
<el-input
v-model=
"form.routeName"
readonly
placeholder=
"请选择工艺路线"
>
<el-button
slot=
"append"
icon=
"el-icon-search"
@
click=
"$refs['RoutesProcessSelectRef'].showFlag = true"
></el-button>
</el-input>
<RoutesProcessSelect
ref=
"RoutesProcessSelectRef"
@
onSelected=
"onRoutesProcessSelect"
/>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"产品编号"
prop=
"productCode"
>
<el-input
v-model=
"form.productCode"
placeholder=
"请选择产品"
>
...
...
@@ -253,6 +273,7 @@ export default {
workorderCode
:
""
,
workorderName
:
""
,
orderSource
:
""
,
routeName
:
""
,
sourceCode
:
""
,
productId
:
""
,
productCode
:
""
,
...
...
@@ -328,6 +349,7 @@ export default {
},
methods
:
{
/** 查询生产工单下拉树结构 */
getTreeselect
()
{
...
...
@@ -445,7 +467,6 @@ export default {
if
(
row
!=
undefined
&&
row
!=
null
)
{
this
.
form
.
routeId
=
row
.
routeId
;
this
.
form
.
routeName
=
row
.
routeName
;
const
params
=
{
pageNum
:
1
,
pageSize
:
1000
,
...
...
@@ -510,6 +531,7 @@ export default {
workorderId
:
null
,
workorderCode
:
null
,
workorderName
:
null
,
routeName
:
null
,
workorderType
:
'SELF'
,
orderSource
:
null
,
sourceCode
:
null
,
...
...
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