feat(cxlz):户重新落宗添加自然幢数量
Showing
1 changed file
with
18 additions
and
10 deletions
... | @@ -56,14 +56,15 @@ | ... | @@ -56,14 +56,15 @@ |
56 | <div class="table-bode"> | 56 | <div class="table-bode"> |
57 | <table border="1"> | 57 | <table border="1"> |
58 | <tr> | 58 | <tr> |
59 | <td>序号</td> | 59 | <th>序号</th> |
60 | <td>操作</td> | 60 | <th>操作</th> |
61 | <td>宗地代码</td> | 61 | <th>宗地代码</th> |
62 | <td>不动产单元号</td> | 62 | <th>不动产单元号</th> |
63 | <td>项目名称</td> | 63 | <th>项目名称</th> |
64 | <td>不动产权证号</td> | 64 | <th>不动产权证号</th> |
65 | <td>权利人</td> | 65 | <th>权利人</th> |
66 | <td>坐落</td> | 66 | <th>坐落</th> |
67 | <th>自然幢数量</th> | ||
67 | </tr> | 68 | </tr> |
68 | <tr v-if="Data.length===0"> | 69 | <tr v-if="Data.length===0"> |
69 | <td colspan="8"> | 70 | <td colspan="8"> |
... | @@ -81,6 +82,7 @@ | ... | @@ -81,6 +82,7 @@ |
81 | <td>{{item.bdcqzh}}</td> | 82 | <td>{{item.bdcqzh}}</td> |
82 | <td>{{item.qlrmc}}</td> | 83 | <td>{{item.qlrmc}}</td> |
83 | <td>{{item.zl}}</td> | 84 | <td>{{item.zl}}</td> |
85 | <td>{{item.zrzCount}}</td> | ||
84 | </tr> | 86 | </tr> |
85 | </table> | 87 | </table> |
86 | </div> | 88 | </div> |
... | @@ -167,7 +169,11 @@ | ... | @@ -167,7 +169,11 @@ |
167 | this.getData(this.queryData) | 169 | this.getData(this.queryData) |
168 | }, | 170 | }, |
169 | addData: function (val) { | 171 | addData: function (val) { |
170 | this.$emit("getData",val) | 172 | if (val.zrzCount < 1) { |
173 | this.$message.warning("当前宗地下没有自然幢,请重新选择") | ||
174 | return | ||
175 | } | ||
176 | this.$emit("getData",val); | ||
171 | }, | 177 | }, |
172 | isClose(flag){ | 178 | isClose(flag){ |
173 | 179 | ||
... | @@ -208,7 +214,9 @@ | ... | @@ -208,7 +214,9 @@ |
208 | background-color: #F5F7FA; | 214 | background-color: #F5F7FA; |
209 | } | 215 | } |
210 | } | 216 | } |
211 | 217 | th{ | |
218 | height: 36px; | ||
219 | } | ||
212 | td { | 220 | td { |
213 | text-align: center; | 221 | text-align: center; |
214 | height: 36px; | 222 | height: 36px; | ... | ... |
-
Please register or sign in to post a comment