a0a5ae62 by zhaoqian

自然幢不动产单元号不可编辑,只允许编辑自然幢号

1 parent 0a1767ba
......@@ -642,7 +642,9 @@
Message.info("请选择需要分割的多幢或者填写分割后多幢的基本信息!")
return
}
vm.loadingShow('正在保存中');
saveDzFg(this.dzFghData).then(res => {
vm.loadingHide()
if (res.success) {
this.getRightTree(res.result,'0,1,2');
this.$router.push({
......@@ -655,6 +657,9 @@
} else {
Message.error("保存失败")
}
}).catch((error)=>{
vm.loadingHide();
console.log(error);
})
},
saveH() {
......
......@@ -306,7 +306,9 @@
oldzdbsms: oldBsm
}
console.log(data, '宗地合并数据')
vm.loadingShow();
ZdHb(data).then(res => {
vm.loadingHide();
if (res.success) {
this.$message.success("合并成功");
//更新目录树
......@@ -322,6 +324,9 @@
} else {
this.$message.error("合并失败")
}
}).catch((error)=>{
vm.loadingHide();
console.log(error);
})
},
dzHb() {
......@@ -330,8 +335,9 @@
newdzxmmc: this.$refs.dzhb.dzhbhData.xmmc,
zdbsm: this.$refs.dzhb.zdbsm
}
vm.loadingShow();
DzHb(data).then(res => {
vm.loadingHide();
if (res.success) {
console.log(res)
this.$message.success("多幢合并成功")
......@@ -344,6 +350,9 @@
}
})
}
}).catch((error)=>{
vm.loadingHide();
console.log(error);
})
},
hHb() {
......
......@@ -834,7 +834,7 @@
}
},
"form.zrzh":function (val) {
if (val != '') {
if (val != ''&&val != null) {
this.$refs.zrzh.style.border = '';
this.form.bdcdyh = val+"0000";
}
......