451fa0ca by xiaomiao

宗地面积

1 parent 9710b627
...@@ -116,10 +116,10 @@ ...@@ -116,10 +116,10 @@
116 </template> 116 </template>
117 117
118 <script> 118 <script>
119 import { getZdjjxxBybdcdyid } from "@/api/registerBook.js"; 119 import { getZdjjxxBybdcdyid } from "@/api/registerBook.js";
120 120
121 export default { 121 export default {
122 data() { 122 data () {
123 return { 123 return {
124 bhqkColumns: [ 124 bhqkColumns: [
125 { 125 {
...@@ -160,14 +160,14 @@ export default { ...@@ -160,14 +160,14 @@ export default {
160 zdbhqks: [], 160 zdbhqks: [],
161 propsParam: this.$attrs, 161 propsParam: this.$attrs,
162 showGroup: false, 162 showGroup: false,
163 bdclxList: ['','宗地','宗海','自然幢','多幢','构筑物','林权','户'] 163 bdclxList: ['', '宗地', '宗海', '自然幢', '多幢', '构筑物', '林权', '户']
164 }; 164 };
165 }, 165 },
166 created() { 166 created () {
167 this.loadData(); 167 this.loadData();
168 }, 168 },
169 methods: { 169 methods: {
170 loadData() { 170 loadData () {
171 getZdjjxxBybdcdyid({ bdcdyid: this.propsParam.bdcdyid }).then((res) => { 171 getZdjjxxBybdcdyid({ bdcdyid: this.propsParam.bdcdyid }).then((res) => {
172 if (res.code === 200) { 172 if (res.code === 200) {
173 this.zdjbxx = res.result.zdjbxx; 173 this.zdjbxx = res.result.zdjbxx;
...@@ -179,17 +179,17 @@ export default { ...@@ -179,17 +179,17 @@ export default {
179 }); 179 });
180 }, 180 },
181 }, 181 },
182 }; 182 };
183 </script> 183 </script>
184 184
185 <style lang="scss" scoped> 185 <style lang="scss" scoped>
186 .zdxx { 186 .zdxx {
187 width: 100%; 187 width: 100%;
188 height: 100%; 188 height: 100%;
189 background-color: #f5f5f5; 189 background-color: #f5f5f5;
190 padding: 5px; 190 padding: 5px;
191 } 191 }
192 .tablebox { 192 .tablebox {
193 overflow-x: auto; 193 overflow-x: auto;
194 width: 100%; 194 width: 100%;
195 height: 100%; 195 height: 100%;
...@@ -249,5 +249,5 @@ export default { ...@@ -249,5 +249,5 @@ export default {
249 } 249 }
250 } 250 }
251 } 251 }
252 } 252 }
253 </style> 253 </style>
......