|
@@ -12,7 +12,9 @@
|
|
<div style='width:50%;margin-right:10px;'>
|
|
<div style='width:50%;margin-right:10px;'>
|
|
<el-select v-model="warehouseName" filterable placeholder="" @change="warehouseNameChange" :value="searchType"
|
|
<el-select v-model="warehouseName" filterable placeholder="" @change="warehouseNameChange" :value="searchType"
|
|
style="margin: 0 10px">
|
|
style="margin: 0 10px">
|
|
- <el-option v-for="item in warehouseList" :key="'cangku' + item.warehouseName" :label="item.warehouseName" :value="item.warehouseName"
|
|
|
|
|
|
+ <el-option key="全部仓库" label="全部仓库" value=""
|
|
|
|
+ style="color: #8890b1" />
|
|
|
|
+ <el-option v-for="item in warehouseList" :key="'cangku' + item.warehouseName" :label="item.warehouseName" :value="item.id"
|
|
style="color: #8890b1" />
|
|
style="color: #8890b1" />
|
|
</el-select>
|
|
</el-select>
|
|
</div>
|
|
</div>
|
|
@@ -663,7 +665,10 @@ import { findLastIndexOfIterate } from 'xe-utils/methods'
|
|
this.showType = this.isShow
|
|
this.showType = this.isShow
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- warehousechange(){
|
|
|
|
|
|
+ warehousechange(e){
|
|
|
|
+ if(e=='全部仓库'){
|
|
|
|
+ this.warehouseName=''
|
|
|
|
+ }
|
|
this.getList()
|
|
this.getList()
|
|
},
|
|
},
|
|
handleClose5(){
|
|
handleClose5(){
|