退料接收新增字段

This commit is contained in:
FrancisHu 2024-07-30 15:44:04 +08:00
parent 7f39194cc4
commit 9ef0b256aa
1 changed files with 7 additions and 1 deletions

View File

@ -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
" "
> >