优化退料接收
This commit is contained in:
parent
06b647e188
commit
aaa118151a
|
|
@ -86,7 +86,12 @@
|
||||||
:data="deviceList"
|
:data="deviceList"
|
||||||
@selection-change="returnSelChange"
|
@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
|
<el-table-column
|
||||||
label="序号"
|
label="序号"
|
||||||
align="center"
|
align="center"
|
||||||
|
|
@ -230,7 +235,11 @@
|
||||||
size="mini"
|
size="mini"
|
||||||
icon="el-icon-zoom-in"
|
icon="el-icon-zoom-in"
|
||||||
@click="handleBackup(scope.row)"
|
@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>
|
</el-button>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue