1.调整添加仓库数据弹窗第三方系统数据表格显示和隐藏判断逻辑

master
MrZhai 3 years ago
parent 0c7116e4d3
commit 9f5a0c9bc7

@ -459,7 +459,7 @@
top="5vh"
>
<el-table :data="sysList" style="width: 100%; margin-bottom: 30px;" border>
<el-table v-if="thirdSysVisible" :data="sysList" style="width: 100%; margin-bottom: 30px;" border>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="第三方系统名称"
@ -696,7 +696,8 @@ export default {
thrWareHouseVisible: false,
sysList: [],
checkThrWarehouseRow: null,
currentSysId: null
currentSysId: null,
thirdSysVisible: false
};
},
methods: {
@ -781,9 +782,13 @@ export default {
},
//
handleForm(node, data, formName) {
// let no = this.getProjectNum() + Math.floor(Math.random() * 10000)
this.currentId = data.id;
if (null != data) {
this.currentId = data.id;
this.thirdSysVisible = true;
} else {
this.thirdSysVisible = false;
}
this.pidData = data || null;
formJson.pid = (data && parseInt(data.id)) || "";
this.formData = JSON.parse(JSON.stringify(formJson));
@ -805,8 +810,10 @@ export default {
// this.index = this.mergeList.findIndex((d) => d.id === data.id);
// }
this.getParentInv(this.formData.level);
this.getThrsysDetailData();
},
getThrsysDetail() {
getThrsysDetailData() {
let params = {
id: this.currentId
};
@ -834,8 +841,6 @@ export default {
// if (data && data.id) {
// this.index = this.mergeList.findIndex((d) => d.id === data.id);
// }
this.getThrsysDetail();
},
formSubmit() {
this.$refs["dataForm"].validate((valid) => {
@ -1185,7 +1190,7 @@ export default {
}
bindThrWarehouse(params).then((res) => {
this.$message.success("绑定成功")
this.getThrsysDetail();
this.getThrsysDetailData();
}).catch((error) => {
this.$message.error("绑定失败")
})
@ -1198,7 +1203,7 @@ export default {
};
unbindThrWarehouse(params).then((res) => {
this.$message.success("解绑成功");
this.getThrsysDetail();
this.getThrsysDetailData();
}).catch((error) => {
this.$message.error("解绑失败");
})

Loading…
Cancel
Save