退料接收新增字段
This commit is contained in:
parent
7f39194cc4
commit
9ef0b256aa
|
|
@ -166,6 +166,12 @@
|
||||||
prop="preNum"
|
prop="preNum"
|
||||||
:show-overflow-tooltip="true"
|
:show-overflow-tooltip="true"
|
||||||
/>
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="已完成退料数量"
|
||||||
|
align="center"
|
||||||
|
prop="finishedBackNum"
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="待退料数量"
|
label="待退料数量"
|
||||||
align="center"
|
align="center"
|
||||||
|
|
@ -248,7 +254,7 @@
|
||||||
@click="handleBackup(scope.row)"
|
@click="handleBackup(scope.row)"
|
||||||
v-if="
|
v-if="
|
||||||
!isView &&
|
!isView &&
|
||||||
scope.row.num < scope.row.preNum &&
|
scope.row.num < (scope.row.preNum - scope.row.finishedBackNum) &&
|
||||||
scope.row.backStatus == 0
|
scope.row.backStatus == 0
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue