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

master
MrZhai 3 years ago
parent caf1282ec2
commit 8f9aab7cdb

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

Loading…
Cancel
Save