Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
pda-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
pda
pda-ui
Commits
918f01c1
Commit
918f01c1
authored
May 10, 2024
by
chenzj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
退料申请新增字段
parent
8889fa95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
15 deletions
+28
-15
index.vue
src/views/mes/pro/return/index.vue
+28
-15
No files found.
src/views/mes/pro/return/index.vue
View file @
918f01c1
...
@@ -120,19 +120,28 @@
...
@@ -120,19 +120,28 @@
</el-row>
</el-row>
<el-table
v-loading=
"loading"
:data=
"materialReturnList"
@
selection-change=
"handleSelectionChange"
>
<el-table
v-loading=
"loading"
:data=
"materialReturnList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
type=
"selection"
width=
"100"
align=
"center"
/>
<el-table-column
label=
"产品编码"
align=
"center"
prop=
"itemCode"
/>
<el-table-column
label=
"产品编码"
align=
"center"
prop=
"itemCode"
width=
"150"
/>
<el-table-column
label=
"产品名称"
align=
"center"
prop=
"itemName"
/>
<el-table-column
label=
"产品名称"
align=
"center"
prop=
"itemName"
width=
"150"
/>
<el-table-column
label=
"申请单编码"
align=
"center"
prop=
"applyNo"
/>
<el-table-column
label=
"申请单编码"
align=
"center"
prop=
"applyNo"
width=
"150"
/>
<el-table-column
label=
"工作单元编码"
align=
"center"
prop=
"workunitCode"
/>
<el-table-column
label=
"工作单元编码"
align=
"center"
prop=
"workunitCode"
width=
"150"
/>
<el-table-column
label=
"工作单元名称"
align=
"center"
prop=
"workunitName"
/>
<el-table-column
label=
"工作单元名称"
align=
"center"
prop=
"workunitName"
width=
"150"
/>
<el-table-column
label=
"生产工单号"
align=
"center"
prop=
"workorderCode"
/>
<el-table-column
label=
"生产工单号"
align=
"center"
prop=
"workorderCode"
width=
"150"
/>
<el-table-column
label=
"批次号"
align=
"center"
prop=
"batchNo"
/>
<el-table-column
label=
"批次号"
align=
"center"
prop=
"batchNo"
width=
"100"
/>
<el-table-column
label=
"卷号"
align=
"center"
prop=
"packNo"
/>
<el-table-column
label=
"卷号"
align=
"center"
prop=
"packNo"
width=
"100"
/>
<el-table-column
label=
"退料数量"
align=
"center"
prop=
"backNum"
/>
<el-table-column
label=
"退料数量"
align=
"center"
prop=
"backNum"
width=
"100"
/>
<el-table-column
label=
"创建人"
align=
"center"
prop=
"createBy"
/>
<el-table-column
label=
"已退料数量"
align=
"center"
prop=
"returnNum"
width=
"100"
/>
<el-table-column
label=
"是否结案"
align=
"center"
prop=
"windCase"
width=
"100"
>
<template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.sys_yes_no"
:value=
"scope.row.windCase"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"创建人"
align=
"center"
prop=
"createBy"
width=
"100"
/>
<el-table-column
label=
"创建时间"
width=
"170"
align=
"center"
prop=
"createTime"
/>
<el-table-column
label=
"创建时间"
width=
"170"
align=
"center"
prop=
"createTime"
/>
<el-table-column
label=
"是否合格"
align=
"center"
prop=
"isQualified"
>
<el-table-column
label=
"是否合格"
align=
"center"
prop=
"isQualified"
width=
"100"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<dict-tag
<dict-tag
:options=
"dict.type.sys_yes_non"
:options=
"dict.type.sys_yes_non"
...
@@ -140,7 +149,7 @@
...
@@ -140,7 +149,7 @@
/>
/>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
fixed=
"right"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<el-button
<el-button
size=
"mini"
size=
"mini"
...
@@ -241,7 +250,7 @@ import { listMaterialReturn, getMaterialReturn, delMaterialReturn, addMaterialRe
...
@@ -241,7 +250,7 @@ import { listMaterialReturn, getMaterialReturn, delMaterialReturn, addMaterialRe
export
default
{
export
default
{
name
:
"MaterialReturn"
,
name
:
"MaterialReturn"
,
dicts
:
[
'sys_yes_non'
],
dicts
:
[
'sys_yes_non'
,
'sys_yes_no'
],
data
()
{
data
()
{
return
{
return
{
// 遮罩层
// 遮罩层
...
@@ -279,6 +288,8 @@ export default {
...
@@ -279,6 +288,8 @@ export default {
workOrderId
:
null
,
workOrderId
:
null
,
workorderCode
:
null
,
workorderCode
:
null
,
isQualified
:
null
,
isQualified
:
null
,
returnNum
:
null
,
windCase
:
null
,
backNum
:
null
,
backNum
:
null
,
batchNo
:
null
,
batchNo
:
null
,
packNo
:
null
,
packNo
:
null
,
...
@@ -342,7 +353,9 @@ export default {
...
@@ -342,7 +353,9 @@ export default {
createBy
:
null
,
createBy
:
null
,
createTime
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateBy
:
null
,
updateTime
:
null
updateTime
:
null
,
returnNum
:
null
,
windCase
:
null
};
};
this
.
resetForm
(
"form"
);
this
.
resetForm
(
"form"
);
},
},
...
...
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