style:宗地基本信息
Showing
1 changed file
with
9 additions
and
28 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description :宗地基本信息 | 2 | * @Description :宗地基本信息 |
3 | * @Autor : miaofang | 3 | * @Autor : miaofang |
4 | * @LastEditTime : 2023-07-31 17:21:56 | 4 | * @LastEditTime: 2023-08-04 10:06:45 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="tableDivCss"> | 7 | <div class="tableDivCss"> |
... | @@ -87,30 +87,11 @@ | ... | @@ -87,30 +87,11 @@ |
87 | <td colspan="3">{{ zdjbxx.zdszb }}</td> | 87 | <td colspan="3">{{ zdjbxx.zdszb }}</td> |
88 | </tr> | 88 | </tr> |
89 | <tr> | 89 | <tr> |
90 | <td>登记时间</td> | ||
91 | <td colspan="2">{{ zdjbxx.bz }}</td> | ||
92 | <td>登簿人</td> | ||
93 | <td>{{ zdjbxx.bz }}</td> | ||
94 | </tr> | ||
95 | |||
96 | <tr> | ||
97 | <td>附记</td> | 90 | <td>附记</td> |
98 | <td colspan="4">{{ zdjbxx.fj }}</td> | 91 | <td colspan="4">{{ zdjbxx.fj }}</td> |
99 | </tr> | 92 | </tr> |
100 | <!-- <tr> | ||
101 | <td>状态</td> | ||
102 | <td colspan="2">{{ zdjbxx.zt }}</td> | ||
103 | <td>区县代码</td> | ||
104 | <td>{{ zdjbxx.qxdm }}</td> | ||
105 | </tr> --> | ||
106 | <tr v-if="showGroup"> | 93 | <tr v-if="showGroup"> |
107 | <td rowspan="4">变化情况</td> | 94 | <td rowspan="4">变化情况</td> |
108 | |||
109 | <!-- <table cellspacing="0" cellpadding="0" :width="bhqkTableWidth"> | ||
110 | <tr v-for="(item, index) in bhqkColumns" :key="index"> | ||
111 | <td class="bhqkTh">{{ item.label }}</td> | ||
112 | </tr> | ||
113 | </table> --> | ||
114 | </tr> | 95 | </tr> |
115 | 96 | ||
116 | <tr v-if="showGroup"> | 97 | <tr v-if="showGroup"> |
... | @@ -130,11 +111,11 @@ | ... | @@ -130,11 +111,11 @@ |
130 | </template> | 111 | </template> |
131 | 112 | ||
132 | <script> | 113 | <script> |
133 | import store from "@/store/index.js"; | 114 | import store from "@/store/index.js"; |
134 | import { getZdjjxxBybdcdyid } from "@/api/djbDetail.js"; | 115 | import { getZdjjxxBybdcdyid } from "@/api/djbDetail.js"; |
135 | 116 | ||
136 | export default { | 117 | export default { |
137 | data() { | 118 | data () { |
138 | return { | 119 | return { |
139 | bhqkColumns: [ | 120 | bhqkColumns: [ |
140 | { | 121 | { |
... | @@ -213,7 +194,7 @@ export default { | ... | @@ -213,7 +194,7 @@ export default { |
213 | } | 194 | } |
214 | }, | 195 | }, |
215 | }, | 196 | }, |
216 | created() { | 197 | created () { |
217 | this.loadData(); | 198 | this.loadData(); |
218 | }, | 199 | }, |
219 | methods: { | 200 | methods: { |
... | @@ -221,7 +202,7 @@ export default { | ... | @@ -221,7 +202,7 @@ export default { |
221 | * @description: loadData | 202 | * @description: loadData |
222 | * @author: renchao | 203 | * @author: renchao |
223 | */ | 204 | */ |
224 | loadData() { | 205 | loadData () { |
225 | getZdjjxxBybdcdyid({ bdcdyid: this.propsParam.bdcdyid }).then((res) => { | 206 | getZdjjxxBybdcdyid({ bdcdyid: this.propsParam.bdcdyid }).then((res) => { |
226 | if (res.code === 200) { | 207 | if (res.code === 200) { |
227 | this.zdjbxx = res.result.zdjbxx; | 208 | this.zdjbxx = res.result.zdjbxx; |
... | @@ -233,8 +214,8 @@ export default { | ... | @@ -233,8 +214,8 @@ export default { |
233 | }); | 214 | }); |
234 | }, | 215 | }, |
235 | }, | 216 | }, |
236 | }; | 217 | }; |
237 | </script> | 218 | </script> |
238 | <style lang="scss" scoped> | 219 | <style lang="scss" scoped> |
239 | @import "~@/styles/tablecss.scss"; | 220 | @import "~@/styles/tablecss.scss"; |
240 | </style> | 221 | </style> | ... | ... |
-
Please register or sign in to post a comment