1.调整第三方仓库数据加载时机

master
MrZhai 3 years ago
parent caf1282ec2
commit 8f9aab7cdb

@ -326,7 +326,7 @@
</el-table>
<div slot="footer" class="dialog-footer">
<el-button @click.native="hideForm">取消</el-button>
<el-button @click.native="hideThrWarehouseTable()">取消</el-button>
<el-button
type="primary"
@click.native="bindThrWarehouse()"
@ -460,6 +460,7 @@ export default {
onSubmit() {
this.getList();
},
//
getList() {
this.loading = true;
filterList(this.query)
@ -473,12 +474,6 @@ export default {
this.mergeList = [];
this.treeList = [];
});
//
filterThrList().then((res) => {
this.thrWarehouseData = res.data.list;
}).catch((error) => {
})
},
//
resetForm() {
@ -680,12 +675,23 @@ export default {
})
},
intentSelect(row) {
this.thrWareHouseVisible = true;
this.currentSysId = row.sysId;
//
filterThrList().then((res) => {
this.thrWarehouseData = res.data.list;
this.thrWareHouseVisible = true;
}).catch((error) => {
this.thrWarehouseData = [];
this.thrWareHouseVisible = true;
this.$message.error("第三方仓库数据加载失败");
});
},
changeThrWarehouse(row){
this.checkThrWarehouseRow = row;
}
},
hideThrWarehouseTable() {
this.thrWareHouseVisible = false;
},
},
filters: {
statusFilterType(status) {

Loading…
Cancel
Save