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
2dc90f99
Commit
2dc90f99
authored
Jan 20, 2024
by
全洪江
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin-mes-ui/dev' into dev
parents
a9be2126
1fcaa29b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
6 deletions
+17
-6
single.vue
src/components/itemSelect/single.vue
+10
-0
ProogingBom.vue
src/views/mes/proofing/components/ProogingBom.vue
+6
-5
proofingInfo.vue
src/views/mes/proofing/proofingInfo.vue
+1
-1
No files found.
src/components/itemSelect/single.vue
View file @
2dc90f99
...
...
@@ -147,6 +147,15 @@
v-if=
"columns[5].visible"
width=
"120"
/>
<el-table-column
label=
"备注"
align=
"center"
key=
"remark"
prop=
"remark"
v-if=
"columns[7].visible"
:show-overflow-tooltip=
"true"
width=
"160"
/>
<el-table-column
label=
"创建时间"
align=
"center"
...
...
@@ -236,6 +245,7 @@ export default {
{
key
:
4
,
label
:
`物料/产品`
,
visible
:
true
},
{
key
:
5
,
label
:
`物料分类`
,
visible
:
true
},
{
key
:
6
,
label
:
`创建时间`
,
visible
:
true
},
{
key
:
7
,
label
:
`备注`
,
visible
:
true
},
],
};
},
...
...
src/views/mes/proofing/components/ProogingBom.vue
View file @
2dc90f99
...
...
@@ -121,11 +121,11 @@
>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"
产品
"
prop=
"itemId"
>
<el-form-item
label=
"
物料
"
prop=
"itemId"
>
<el-input
v-model=
"form.itemName"
readonly
placeholder=
"请选择
产品
"
placeholder=
"请选择
物料
"
>
<el-button
slot=
"append"
...
...
@@ -289,7 +289,8 @@ export default {
if
(
row
!=
undefined
&&
row
!=
null
)
{
this
.
form
.
itemId
=
row
.
itemId
;
this
.
form
.
itemName
=
row
.
itemName
;
this
.
form
.
unit
=
row
.
unitOfMeasure
;
this
.
form
.
unitOfMeasure
=
row
.
unitOfMeasure
;
this
.
form
.
itemRemark
=
row
.
remark
;
}
},
/**表单提交 */
...
...
@@ -323,8 +324,8 @@ export default {
},
/**重置组件状态 */
resetState
()
{
this
.
resetForm
()
this
.
tableData
=
[]
this
.
resetForm
()
;
this
.
tableData
=
[]
;
},
/**获取组件数据 */
getComData
()
{
...
...
src/views/mes/proofing/proofingInfo.vue
View file @
2dc90f99
...
...
@@ -310,7 +310,7 @@ export default {
processList
,
};
this
.
loading
=
true
;
if
(
mode
==
"apply"
)
{
if
(
this
.
mode
==
"apply"
)
{
addPrototypeRequest
(
params
)
.
then
((
res
)
=>
{
this
.
loading
=
false
;
...
...
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