|
|
|
@ -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) {
|
|
|
|
|