c6fa2036 by 杨威

重新落宗选择宗地的数据展示宗地下自然幢数量

1 parent d099a117
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
64 <el-button type="primary" @click="save">保存</el-button> 64 <el-button type="primary" @click="save">保存</el-button>
65 <el-button type="primary" @click="close">取消</el-button> 65 <el-button type="primary" @click="close">取消</el-button>
66 </div> 66 </div>
67 <zd-query-data :centerDialogVisible="xzzdVisible" @close="xzzdClose" @getData="getZdxx" 67 <zd-query-data :isCxlz = true :centerDialogVisible="xzzdVisible" @close="xzzdClose" @getData="getZdxx"
68 :isZdClose="true"></zd-query-data> 68 :isZdClose="true"></zd-query-data>
69 </el-dialog> 69 </el-dialog>
70 </template> 70 </template>
......
...@@ -64,10 +64,10 @@ ...@@ -64,10 +64,10 @@
64 <th>不动产权证号</th> 64 <th>不动产权证号</th>
65 <th>权利人</th> 65 <th>权利人</th>
66 <th>坐落</th> 66 <th>坐落</th>
67 <th>自然幢数量</th> 67 <th v-if="isCxlz">自然幢数量</th>
68 </tr> 68 </tr>
69 <tr v-if="Data.length===0"> 69 <tr v-if="Data.length===0">
70 <td colspan="8"> 70 <td :colspan="isCxlz ? 9:8">
71 <span class="noData">暂无数据</span> 71 <span class="noData">暂无数据</span>
72 </td> 72 </td>
73 </tr> 73 </tr>
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
82 <td>{{item.bdcqzh}}</td> 82 <td>{{item.bdcqzh}}</td>
83 <td>{{item.qlrmc}}</td> 83 <td>{{item.qlrmc}}</td>
84 <td>{{item.zl}}</td> 84 <td>{{item.zl}}</td>
85 <td>{{item.zrzCount}}</td> 85 <td v-if="isCxlz">{{item.zrzCount}}</td>
86 </tr> 86 </tr>
87 </table> 87 </table>
88 </div> 88 </div>
...@@ -134,6 +134,10 @@ ...@@ -134,6 +134,10 @@
134 isZdClose: { 134 isZdClose: {
135 type: Boolean, 135 type: Boolean,
136 default: false 136 default: false
137 },
138 isCxlz:{
139 type: Boolean,
140 default: false
137 } 141 }
138 }, 142 },
139 mounted() { 143 mounted() {
...@@ -169,7 +173,7 @@ ...@@ -169,7 +173,7 @@
169 this.getData(this.queryData) 173 this.getData(this.queryData)
170 }, 174 },
171 addData: function (val) { 175 addData: function (val) {
172 if (val.zrzCount < 1) { 176 if (this.isCxlz &&val.zrzCount < 1) {
173 this.$message.warning("当前宗地下没有自然幢,请重新选择") 177 this.$message.warning("当前宗地下没有自然幢,请重新选择")
174 return 178 return
175 } 179 }
......