优化退料接收
This commit is contained in:
parent
06b647e188
commit
aaa118151a
|
|
@ -86,7 +86,12 @@
|
|||
:data="deviceList"
|
||||
@selection-change="returnSelChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column
|
||||
type="selection"
|
||||
width="55"
|
||||
align="center"
|
||||
:selectable="(row) => row.backStatus == 0"
|
||||
/>
|
||||
<el-table-column
|
||||
label="序号"
|
||||
align="center"
|
||||
|
|
@ -230,7 +235,11 @@
|
|||
size="mini"
|
||||
icon="el-icon-zoom-in"
|
||||
@click="handleBackup(scope.row)"
|
||||
v-if="!isView && scope.row.num < scope.row.preNum"
|
||||
v-if="
|
||||
!isView &&
|
||||
scope.row.num < scope.row.preNum &&
|
||||
scope.row.backStatus == 0
|
||||
"
|
||||
>
|
||||
撤回
|
||||
</el-button>
|
||||
|
|
|
|||
Loading…
Reference in New Issue