|
@@ -12,7 +12,7 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="6" :sm="24">
|
|
<a-col :md="6" :sm="24">
|
|
<a-form-item label="货架名称">
|
|
<a-form-item label="货架名称">
|
|
- <shelfSList mode="multiple" v-model="queryParam.shelfSnList"></shelfSList>
|
|
|
|
|
|
+ <shelfSList ref="shelfSList" mode="multiple" v-model="queryParam.shelfSnList"></shelfSList>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="6" :sm="24">
|
|
<a-col :md="6" :sm="24">
|
|
@@ -143,7 +143,11 @@ export default {
|
|
this.queryParam.orderEndDate = ''
|
|
this.queryParam.orderEndDate = ''
|
|
this.queryParam.orderBillNo = ''
|
|
this.queryParam.orderBillNo = ''
|
|
this.queryParam.billState = undefined
|
|
this.queryParam.billState = undefined
|
|
- this.queryParam.shelfSnList = undefined
|
|
|
|
|
|
+ if (this.$route.query && this.$route.query.bizType == 'SHELF_WARN') {
|
|
|
|
+ this.queryParam.shelfSnList = [this.$route.query.shelfSn]
|
|
|
|
+ } else {
|
|
|
|
+ this.queryParam.shelfSnList = undefined
|
|
|
|
+ }
|
|
this.$refs.table.refresh(true)
|
|
this.$refs.table.refresh(true)
|
|
},
|
|
},
|
|
setTableH () {
|
|
setTableH () {
|