|
|
|
@ -32,7 +32,7 @@
|
|
|
|
|
<!-- 仓库名称 --> |
|
|
|
|
|
|
|
|
|
<div class="top-bar__item"> |
|
|
|
|
<view>{{ datalist[checkwarehousevalue]?.name || '' }}</view> |
|
|
|
|
<view>{{ dataName || '' }}</view> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="top-user"> |
|
|
|
@ -67,7 +67,13 @@
|
|
|
|
|
</div> |
|
|
|
|
<el-dialog v-model="isshow" title="切换仓库" width="30%"> |
|
|
|
|
<div style="display: flex; flex-direction: column; align-items: center"> |
|
|
|
|
<el-select class="selecin" v-model="warehousevalue" filterable placeholder="请选择切换的仓库"> |
|
|
|
|
<el-select |
|
|
|
|
@change="warehouseChange" |
|
|
|
|
class="selecin" |
|
|
|
|
v-model="warehousevalue" |
|
|
|
|
filterable |
|
|
|
|
placeholder="请选择切换的仓库" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="(item, index) in datalist" |
|
|
|
|
:key="item.id" |
|
|
|
@ -96,6 +102,7 @@ import {
|
|
|
|
|
getMyWarehouseList, |
|
|
|
|
preserveCurrentWarehouse, |
|
|
|
|
getclearWarehouseCache, |
|
|
|
|
getMyCurrentWarehouse, |
|
|
|
|
} from '@/api/work/work'; |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
@ -117,6 +124,7 @@ export default {
|
|
|
|
|
warehousevalue: '', |
|
|
|
|
checkwarehousevalue: 0, |
|
|
|
|
dataName: null, |
|
|
|
|
warehouseList: [], //仓库列表 |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
@ -129,16 +137,30 @@ export default {
|
|
|
|
|
filters: {}, |
|
|
|
|
|
|
|
|
|
created() { |
|
|
|
|
this.dataName = null; |
|
|
|
|
let warehouseName = localStorage.getItem('WarehouseName'); |
|
|
|
|
let modifiedName = warehouseName.replace(/"/g, ''); |
|
|
|
|
if (modifiedName == 'undefined') { |
|
|
|
|
this.dataName = ''; |
|
|
|
|
console.log('当前暂时没有参数', this.dataName); |
|
|
|
|
} else { |
|
|
|
|
this.dataName = modifiedName; |
|
|
|
|
console.log(this.dataName, '当前参数存在值'); |
|
|
|
|
} |
|
|
|
|
getMyCurrentWarehouse().then(res => { |
|
|
|
|
if (res.data.data == null) { |
|
|
|
|
console.log('当前没有数据'); |
|
|
|
|
localStorage.setItem('WarehouseName', void 0); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
localStorage.setItem('WarehouseName', res.data.data.name); |
|
|
|
|
if(!res.data.data.name){ |
|
|
|
|
this.dataName = ''; |
|
|
|
|
}else{ |
|
|
|
|
this.dataName = res.data.data.name;//仓库名字 |
|
|
|
|
} |
|
|
|
|
// localStorage.setItem('my_data', JSON.stringify(res.data.data)) |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// let warehouseName = localStorage.getItem('WarehouseName'); |
|
|
|
|
// // let modifiedName = warehouseName.replace(/"/g, ''); |
|
|
|
|
// if (warehouseName == 'undefined') { |
|
|
|
|
// this.dataName = ''; |
|
|
|
|
// console.log('当前暂时没有参数', this.dataName); |
|
|
|
|
// } else { |
|
|
|
|
// this.dataName = warehouseName; |
|
|
|
|
// console.log(this.dataName, '当前参数存在值'); |
|
|
|
|
// } |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
...mapGetters([ |
|
|
|
@ -154,6 +176,7 @@ export default {
|
|
|
|
|
]), |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
// 确定切换仓库 |
|
|
|
|
async confirmcks() { |
|
|
|
|
if (typeof this.warehousevalue != 'number') { |
|
|
|
|
return; |
|
|
|
@ -173,6 +196,8 @@ export default {
|
|
|
|
|
setTimeout(() => { |
|
|
|
|
window.location.reload(); |
|
|
|
|
}, 1000); |
|
|
|
|
this.dataName = '全部'; |
|
|
|
|
localStorage.setItem('WarehouseName', this.dataName); |
|
|
|
|
} else { |
|
|
|
|
this.$message({ message: res.data.msg, type: 'error' }); |
|
|
|
|
} |
|
|
|
@ -187,11 +212,16 @@ export default {
|
|
|
|
|
setTimeout(() => { |
|
|
|
|
window.location.reload(); |
|
|
|
|
}, 1000); |
|
|
|
|
this.dataName = this.warehouseList[this.warehousevalue - 1].name; |
|
|
|
|
localStorage.setItem('WarehouseName', this.dataName); |
|
|
|
|
} else { |
|
|
|
|
this.$message({ message: res.data.msg, type: 'error' }); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
warehouseChange(val) { |
|
|
|
|
console.log(val); |
|
|
|
|
}, |
|
|
|
|
setCollapse() { |
|
|
|
|
this.$store.commit('SET_COLLAPSE'); |
|
|
|
|
}, |
|
|
|
@ -207,12 +237,15 @@ export default {
|
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
showcl(flg) { |
|
|
|
|
console.log(this.datalist[this.warehousevalue], '当前选择的仓库'); |
|
|
|
|
this.isshow = flg; |
|
|
|
|
if (this.isshow) { |
|
|
|
|
getMyWarehouseList().then(res => { |
|
|
|
|
console.log(res.data.data, 'getMyWarehouseList'); |
|
|
|
|
let arr = [{ name: '全部', id: '0' }]; |
|
|
|
|
this.datalist = arr.concat(res.data.data); |
|
|
|
|
this.warehouseList = res.data.data; |
|
|
|
|
console.log(this.warehouseList, '存储的仓库'); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|