|
|
|
|
@ -31,11 +31,10 @@
|
|
|
|
|
|
|
|
|
|
<a-select showSearch
|
|
|
|
|
ref="select"
|
|
|
|
|
:filter-option="filterOption"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
:placeholder="checkObj.category"
|
|
|
|
|
:defaultValue="checkObj.category"
|
|
|
|
|
:filterOption="filterOption"
|
|
|
|
|
@change="change"
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
<a-select-option v-for="i in categorys" :key="i">
|
|
|
|
|
@ -54,7 +53,7 @@
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
v-model="checkObj.count"
|
|
|
|
|
:min="0"
|
|
|
|
|
:max="50"
|
|
|
|
|
:max="150"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
@ -173,10 +172,7 @@ export default {
|
|
|
|
|
// key: 'lotnum'
|
|
|
|
|
// },
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
label: "托盘码",
|
|
|
|
|
key: "wmsCode",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
label: "盘点任务号",
|
|
|
|
|
key: "checkNum",
|
|
|
|
|
@ -240,6 +236,12 @@ export default {
|
|
|
|
|
handleChangeVlue(value){
|
|
|
|
|
this.checkObj.category = value
|
|
|
|
|
},
|
|
|
|
|
change(value){
|
|
|
|
|
console.log(value);
|
|
|
|
|
|
|
|
|
|
this.checkObj.category = value
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
//获取复核页面的核对信息
|
|
|
|
|
getStockInfo(row, column) {
|
|
|
|
|
this.$api.httpApi
|
|
|
|
|
|