a0a5ae62 by zhaoqian

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

1 parent 0a1767ba
...@@ -642,7 +642,9 @@ ...@@ -642,7 +642,9 @@
642 Message.info("请选择需要分割的多幢或者填写分割后多幢的基本信息!") 642 Message.info("请选择需要分割的多幢或者填写分割后多幢的基本信息!")
643 return 643 return
644 } 644 }
645 vm.loadingShow('正在保存中');
645 saveDzFg(this.dzFghData).then(res => { 646 saveDzFg(this.dzFghData).then(res => {
647 vm.loadingHide()
646 if (res.success) { 648 if (res.success) {
647 this.getRightTree(res.result,'0,1,2'); 649 this.getRightTree(res.result,'0,1,2');
648 this.$router.push({ 650 this.$router.push({
...@@ -655,6 +657,9 @@ ...@@ -655,6 +657,9 @@
655 } else { 657 } else {
656 Message.error("保存失败") 658 Message.error("保存失败")
657 } 659 }
660 }).catch((error)=>{
661 vm.loadingHide();
662 console.log(error);
658 }) 663 })
659 }, 664 },
660 saveH() { 665 saveH() {
......
...@@ -306,7 +306,9 @@ ...@@ -306,7 +306,9 @@
306 oldzdbsms: oldBsm 306 oldzdbsms: oldBsm
307 } 307 }
308 console.log(data, '宗地合并数据') 308 console.log(data, '宗地合并数据')
309 vm.loadingShow();
309 ZdHb(data).then(res => { 310 ZdHb(data).then(res => {
311 vm.loadingHide();
310 if (res.success) { 312 if (res.success) {
311 this.$message.success("合并成功"); 313 this.$message.success("合并成功");
312 //更新目录树 314 //更新目录树
...@@ -322,6 +324,9 @@ ...@@ -322,6 +324,9 @@
322 } else { 324 } else {
323 this.$message.error("合并失败") 325 this.$message.error("合并失败")
324 } 326 }
327 }).catch((error)=>{
328 vm.loadingHide();
329 console.log(error);
325 }) 330 })
326 }, 331 },
327 dzHb() { 332 dzHb() {
...@@ -330,8 +335,9 @@ ...@@ -330,8 +335,9 @@
330 newdzxmmc: this.$refs.dzhb.dzhbhData.xmmc, 335 newdzxmmc: this.$refs.dzhb.dzhbhData.xmmc,
331 zdbsm: this.$refs.dzhb.zdbsm 336 zdbsm: this.$refs.dzhb.zdbsm
332 } 337 }
333 338 vm.loadingShow();
334 DzHb(data).then(res => { 339 DzHb(data).then(res => {
340 vm.loadingHide();
335 if (res.success) { 341 if (res.success) {
336 console.log(res) 342 console.log(res)
337 this.$message.success("多幢合并成功") 343 this.$message.success("多幢合并成功")
...@@ -344,6 +350,9 @@ ...@@ -344,6 +350,9 @@
344 } 350 }
345 }) 351 })
346 } 352 }
353 }).catch((error)=>{
354 vm.loadingHide();
355 console.log(error);
347 }) 356 })
348 }, 357 },
349 hHb() { 358 hHb() {
......
...@@ -834,7 +834,7 @@ ...@@ -834,7 +834,7 @@
834 } 834 }
835 }, 835 },
836 "form.zrzh":function (val) { 836 "form.zrzh":function (val) {
837 if (val != '') { 837 if (val != ''&&val != null) {
838 this.$refs.zrzh.style.border = ''; 838 this.$refs.zrzh.style.border = '';
839 this.form.bdcdyh = val+"0000"; 839 this.form.bdcdyh = val+"0000";
840 } 840 }
......