451fa0ca by xiaomiao

宗地面积

1 parent 9710b627
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
9 <col width="150" /> 9 <col width="150" />
10 <tr> 10 <tr>
11 <td colspan="6" class="title">宗地基本信息</td> 11 <td colspan="6" class="title">宗地基本信息</td>
12 </tr> 12 </tr>
13 <tr> 13 <tr>
14 <td colspan="2">不动产类型:</td> 14 <td colspan="2">不动产类型:</td>
15 <td colspan="2">{{ bdclxList[zdjbxx.bdclx] }}</td> 15 <td colspan="2">{{ bdclxList[zdjbxx.bdclx] }}</td>
...@@ -116,138 +116,138 @@ ...@@ -116,138 +116,138 @@
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 {
126 prop: "ssywh", 126 prop: "ssywh",
127 label: "上手业务号", 127 label: "上手业务号",
128 }, 128 },
129 { 129 {
130 prop: "zddm", 130 prop: "zddm",
131 label: "宗地代码", 131 label: "宗地代码",
132 }, 132 },
133 { 133 {
134 prop: "bhqzddm", 134 prop: "bhqzddm",
135 label: "变化前宗地代码", 135 label: "变化前宗地代码",
136 }, 136 },
137 { 137 {
138 prop: "bhnr", 138 prop: "bhnr",
139 label: "变化内容", 139 label: "变化内容",
140 }, 140 },
141 { 141 {
142 prop: "bhyy", 142 prop: "bhyy",
143 label: "变化原因", 143 label: "变化原因",
144 }, 144 },
145 { 145 {
146 prop: "djsj", 146 prop: "djsj",
147 label: "登记时间", 147 label: "登记时间",
148 }, 148 },
149 { 149 {
150 prop: "dbr", 150 prop: "dbr",
151 label: "登簿人", 151 label: "登簿人",
152 }, 152 },
153 { 153 {
154 prop: "fj", 154 prop: "fj",
155 label: "附记", 155 label: "附记",
156 }, 156 },
157 ], 157 ],
158 bhqkTableWidth: 745, 158 bhqkTableWidth: 745,
159 zdjbxx: {}, 159 zdjbxx: {},
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;
174 this.zdbhqks = res.result.zdbhqkList; 174 this.zdbhqks = res.result.zdbhqkList;
175 if (this.zdbhqks != null && this.zdbhqks.length > 0) { 175 if (this.zdbhqks != null && this.zdbhqks.length > 0) {
176 this.showGroup = true; 176 this.showGroup = true;
177 }
177 } 178 }
178 } 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%;
188 height: 100%;
189 background-color: #f5f5f5;
190 padding: 5px;
191 }
192 .tablebox {
193 overflow-x: auto;
194 width: 100%;
195 height: 100%;
196 background: #fff;
197 border: 1px solid rgb(228, 228, 228);
198 text-align: center;
199 padding: 4px;
200 overflow-y: scroll;
201
202 .zdxxTable {
203 width: 100%; 187 width: 100%;
204 color: #333; 188 height: 100%;
205 189 background-color: #f5f5f5;
206 td { 190 padding: 5px;
207 border: 1px solid rgb(228, 228, 228); 191 }
208 line-height: 30px; 192 .tablebox {
209 padding: 0 4px; 193 overflow-x: auto;
210 } 194 width: 100%;
195 height: 100%;
196 background: #fff;
197 border: 1px solid rgb(228, 228, 228);
198 text-align: center;
199 padding: 4px;
200 overflow-y: scroll;
211 201
212 .title { 202 .zdxxTable {
213 line-height: 68px; 203 width: 100%;
214 font-size: 20px; 204 color: #333;
215 }
216 205
217 .unit { 206 td {
218 text-align: right; 207 border: 1px solid rgb(228, 228, 228);
219 } 208 line-height: 30px;
220 209 padding: 0 4px;
221 .title2 { 210 }
222 writing-mode: vertical-lr;
223 letter-spacing: 6px;
224 }
225 211
226 .bhqk { 212 .title {
227 padding: 0; 213 line-height: 68px;
214 font-size: 20px;
215 }
228 216
229 .box { 217 .unit {
230 width: 745px; 218 text-align: right;
231 overflow: auto;
232 } 219 }
233 220
234 .test { 221 .title2 {
222 writing-mode: vertical-lr;
223 letter-spacing: 6px;
235 } 224 }
236 225
237 table { 226 .bhqk {
238 .bhqkTh { 227 padding: 0;
239 width: 110px; 228
240 line-height: 40px; 229 .box {
241 background-color: #f5f5f5; 230 width: 745px;
242 border: 1px solid rgb(228, 228, 228); 231 overflow: auto;
243 font-weight: bold;
244 } 232 }
245 233
246 td { 234 .test {
247 width: 180px; 235 }
236
237 table {
238 .bhqkTh {
239 width: 110px;
240 line-height: 40px;
241 background-color: #f5f5f5;
242 border: 1px solid rgb(228, 228, 228);
243 font-weight: bold;
244 }
245
246 td {
247 width: 180px;
248 }
248 } 249 }
249 } 250 }
250 } 251 }
251 } 252 }
252 }
253 </style> 253 </style>
......