76a3cd95 by 杨威

宗地分割判断幢信息是否全部选择

1 parent c9707e48
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
5 :visible.sync="isVisible" 5 :visible.sync="isVisible"
6 width="70%" 6 width="70%"
7 @close="close" 7 @close="close"
8 :modal-append-to-body="false"
8 center> 9 center>
9 <div class="search"> 10 <div class="search">
10 <!-- <el-button type="primary" @click="search">查询</el-button> 11 <!-- <el-button type="primary" @click="search">查询</el-button>
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
5 :visible.sync="isVisible" 5 :visible.sync="isVisible"
6 width="70%" 6 width="70%"
7 @close="close" 7 @close="close"
8 :modal-append-to-body="false"
8 center> 9 center>
9 <div class="search"> 10 <div class="search">
10 <el-row> 11 <el-row>
......
...@@ -439,7 +439,7 @@ export default { ...@@ -439,7 +439,7 @@ export default {
439 width: 100%; 439 width: 100%;
440 height: 100vh; 440 height: 100vh;
441 position: relative; 441 position: relative;
442 min-width: 1500px; 442 min-width: 1680px;
443 overflow-x: auto; 443 overflow-x: auto;
444 .calcWidth{ 444 .calcWidth{
445 width: calc(100% - 300px); 445 width: calc(100% - 300px);
......
...@@ -724,6 +724,7 @@ ...@@ -724,6 +724,7 @@
724 } 724 }
725 }, 725 },
726 saveZd() { 726 saveZd() {
727 if(this.tempBsmList.length == (this.zdZxx.dzList.length + this.zdZxx.zrzList.length)){
727 zdfg(this.zdFghData).then(res => { 728 zdfg(this.zdFghData).then(res => {
728 if (res.success) { 729 if (res.success) {
729 this.$store.state.zdbsms = res.result; 730 this.$store.state.zdbsms = res.result;
...@@ -738,6 +739,9 @@ ...@@ -738,6 +739,9 @@
738 Message.error("保存失败") 739 Message.error("保存失败")
739 } 740 }
740 }) 741 })
742 }else{
743 this.$message.warning("幢信息未选择完成,无法保存")
744 }
741 }, 745 },
742 saveDz() { 746 saveDz() {
743 747
......