Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web
Showing
3 changed files
with
65 additions
and
71 deletions
... | @@ -9,18 +9,12 @@ | ... | @@ -9,18 +9,12 @@ |
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> | ||
14 | <td colspan="6" class="unit" v-if="zdjbxx.mjdw == '1'"> | ||
15 | 单位:■平方米 □公顷(□亩)、万元 | ||
16 | </td> | ||
17 | <td colspan="6" class="unit" v-else> | ||
18 | 单位:□平方米 ■公顷(■亩)、万元 | ||
19 | </td> | ||
20 | </tr> | ||
21 | <tr> | 13 | <tr> |
22 | <td colspan="2">不动产类型</td> | 14 | <td colspan="2">不动产类型:</td> |
23 | <td colspan="4">■土地 ■房屋建筑 □构筑物 □森林、林地 □其他</td> | 15 | <td colspan="2">{{ zdjbxx.bdclx }}</td> |
16 | <td>单位:</td> | ||
17 | <td>{{ zdjbxx.mjdw }}</td> | ||
24 | </tr> | 18 | </tr> |
25 | <tr> | 19 | <tr> |
26 | <td colspan="2">坐落</td> | 20 | <td colspan="2">坐落</td> |
... | @@ -37,15 +31,15 @@ | ... | @@ -37,15 +31,15 @@ |
37 | </tr> | 31 | </tr> |
38 | <tr> | 32 | <tr> |
39 | <td colspan="2">等级</td> | 33 | <td colspan="2">等级</td> |
40 | <td>{{ zdjbxx.dj }}</td> | 34 | <td>{{ zdjbxx.djmc }}</td> |
41 | <td>价格</td> | 35 | <td>价格</td> |
42 | <td>{{ zdjbxx.jg }}</td> | 36 | <td>{{ zdjbxx.jg }}</td> |
43 | </tr> | 37 | </tr> |
44 | <tr> | 38 | <tr> |
45 | <td colspan="2">权利类型</td> | 39 | <td colspan="2">权利类型</td> |
46 | <td>{{ zdjbxx.qllx }}</td> | 40 | <td>{{ zdjbxx.qllxmc }}</td> |
47 | <td>权利性质</td> | 41 | <td>权利性质</td> |
48 | <td>{{ zdjbxx.qlxz }}</td> | 42 | <td>{{ zdjbxx.qlxzmc }}</td> |
49 | </tr> | 43 | </tr> |
50 | <tr> | 44 | <tr> |
51 | <td colspan="2">权利设定方式</td> | 45 | <td colspan="2">权利设定方式</td> |
... | @@ -125,7 +119,7 @@ | ... | @@ -125,7 +119,7 @@ |
125 | import { getZdjjxxBybdcdyid } from "@/api/registerBook.js"; | 119 | import { getZdjjxxBybdcdyid } from "@/api/registerBook.js"; |
126 | 120 | ||
127 | export default { | 121 | export default { |
128 | data () { | 122 | data() { |
129 | return { | 123 | return { |
130 | bhqkColumns: [ | 124 | bhqkColumns: [ |
131 | { | 125 | { |
... | @@ -164,16 +158,16 @@ export default { | ... | @@ -164,16 +158,16 @@ export default { |
164 | bhqkTableWidth: 745, | 158 | bhqkTableWidth: 745, |
165 | zdjbxx: {}, | 159 | zdjbxx: {}, |
166 | zdbhqks: [], | 160 | zdbhqks: [], |
167 | propsParam:this.$attrs, | 161 | propsParam: this.$attrs, |
168 | showGroup: false, | 162 | showGroup: false, |
169 | }; | 163 | }; |
170 | }, | 164 | }, |
171 | created () { | 165 | created() { |
172 | this.loadData(); | 166 | this.loadData(); |
173 | }, | 167 | }, |
174 | methods: { | 168 | methods: { |
175 | loadData () { | 169 | loadData() { |
176 | getZdjjxxBybdcdyid({bdcdyid:this.propsParam.bdcdyid}).then((res) => { | 170 | getZdjjxxBybdcdyid({ bdcdyid: this.propsParam.bdcdyid }).then((res) => { |
177 | if (res.code === 200) { | 171 | if (res.code === 200) { |
178 | this.zdjbxx = res.result.zdjbxx; | 172 | this.zdjbxx = res.result.zdjbxx; |
179 | this.zdbhqks = res.result.zdbhqkList; | 173 | this.zdbhqks = res.result.zdbhqkList; |
... | @@ -190,71 +184,69 @@ export default { | ... | @@ -190,71 +184,69 @@ export default { |
190 | <style lang="scss" scoped> | 184 | <style lang="scss" scoped> |
191 | .zdxx { | 185 | .zdxx { |
192 | width: 100%; | 186 | width: 100%; |
193 | height: calc(100% - 42px); | 187 | height: 100%; |
194 | background-color: #f5f5f5; | 188 | background-color: #f5f5f5; |
195 | padding: 5px; | 189 | padding: 5px; |
196 | |||
197 | |||
198 | } | 190 | } |
199 | .tablebox { | 191 | .tablebox { |
200 | overflow-x: auto; | 192 | overflow-x: auto; |
193 | width: 100%; | ||
194 | height: 100%; | ||
195 | background: #fff; | ||
196 | border: 1px solid rgb(228, 228, 228); | ||
197 | text-align: center; | ||
198 | padding: 4px; | ||
199 | overflow-y: scroll; | ||
200 | |||
201 | .zdxxTable { | ||
201 | width: 100%; | 202 | width: 100%; |
202 | height: 100%; | 203 | color: #333; |
203 | background: #fff; | ||
204 | border: 1px solid rgb(228, 228, 228); | ||
205 | text-align: center; | ||
206 | padding: 4px; | ||
207 | overflow-y: scroll; | ||
208 | 204 | ||
209 | .zdxxTable { | 205 | td { |
210 | width: 100%; | 206 | border: 1px solid rgb(228, 228, 228); |
211 | min-width: 900px; | 207 | line-height: 30px; |
212 | color: #333; | 208 | padding: 0 4px; |
209 | } | ||
213 | 210 | ||
214 | td { | 211 | .title { |
215 | border: 1px solid rgb(228, 228, 228); | 212 | line-height: 68px; |
216 | line-height: 30px; | 213 | font-size: 20px; |
217 | padding: 0 4px; | 214 | } |
218 | } | ||
219 | 215 | ||
220 | .title { | 216 | .unit { |
221 | line-height: 68px; | 217 | text-align: right; |
222 | font-size: 20px; | 218 | } |
223 | } | ||
224 | 219 | ||
225 | .unit { | 220 | .title2 { |
226 | text-align: right; | 221 | writing-mode: vertical-lr; |
227 | } | 222 | letter-spacing: 6px; |
223 | } | ||
224 | |||
225 | .bhqk { | ||
226 | padding: 0; | ||
228 | 227 | ||
229 | .title2 { | 228 | .box { |
230 | writing-mode: vertical-lr; | 229 | width: 745px; |
231 | letter-spacing: 6px; | 230 | overflow: auto; |
232 | } | 231 | } |
233 | 232 | ||
234 | .bhqk { | 233 | .test { |
235 | padding: 0; | 234 | } |
236 | 235 | ||
237 | .box { | 236 | table { |
238 | width: 745px; | 237 | .bhqkTh { |
239 | overflow: auto; | 238 | width: 110px; |
239 | line-height: 40px; | ||
240 | background-color: #f5f5f5; | ||
241 | border: 1px solid rgb(228, 228, 228); | ||
242 | font-weight: bold; | ||
240 | } | 243 | } |
241 | 244 | ||
242 | .test {} | 245 | td { |
243 | 246 | width: 180px; | |
244 | table { | ||
245 | .bhqkTh { | ||
246 | width: 110px; | ||
247 | line-height: 40px; | ||
248 | background-color: #f5f5f5; | ||
249 | border: 1px solid rgb(228, 228, 228); | ||
250 | font-weight: bold; | ||
251 | } | ||
252 | |||
253 | td { | ||
254 | width: 180px; | ||
255 | } | ||
256 | } | 247 | } |
257 | } | 248 | } |
258 | } | 249 | } |
259 | } | 250 | } |
251 | } | ||
260 | </style> | 252 | </style> | ... | ... |
... | @@ -25,8 +25,10 @@ | ... | @@ -25,8 +25,10 @@ |
25 | <div class="title">申请单元列表({{ unitData.length }})</div> | 25 | <div class="title">申请单元列表({{ unitData.length }})</div> |
26 | <el-menu :default-active="activeIndex" @select="unitClick"> | 26 | <el-menu :default-active="activeIndex" @select="unitClick"> |
27 | <el-menu-item v-for="(item, index) in unitData" :index="index.toString()" :key="index"> | 27 | <el-menu-item v-for="(item, index) in unitData" :index="index.toString()" :key="index"> |
28 | <p>{{ item.bdcdyh }}</p> | 28 | <div> |
29 | <p class="title-detail">{{ item.zl }}</p> | 29 | <p>{{ item.bdcdyh }}</p> |
30 | <p class="title-detail">{{ item.zl }}</p> | ||
31 | </div> | ||
30 | </el-menu-item> | 32 | </el-menu-item> |
31 | </el-menu> | 33 | </el-menu> |
32 | </div> | 34 | </div> | ... | ... |
... | @@ -116,7 +116,7 @@ export default { | ... | @@ -116,7 +116,7 @@ export default { |
116 | editItem: 'registerBook/djbFrame', // 弹窗内容 | 116 | editItem: 'registerBook/djbFrame', // 弹窗内容 |
117 | formData: scroll, | 117 | formData: scroll, |
118 | width:"1220px", | 118 | width:"1220px", |
119 | height:"835px", | 119 | height:"790px", |
120 | // cancelText: '取消摆烂', // 右边按钮文本 | 120 | // cancelText: '取消摆烂', // 右边按钮文本 |
121 | // confirmText: '确定点击', //左边按钮文本 | 121 | // confirmText: '确定点击', //左边按钮文本 |
122 | cancel: () => { | 122 | cancel: () => { | ... | ... |
-
Please register or sign in to post a comment