Merge remote-tracking branch 'origin/master'
Showing
7 changed files
with
1079 additions
and
3 deletions
| ... | @@ -22,6 +22,20 @@ export function insertQjZdjbxx(data) { | ... | @@ -22,6 +22,20 @@ export function insertQjZdjbxx(data) { |
| 22 | data: data, | 22 | data: data, |
| 23 | }); | 23 | }); |
| 24 | } | 24 | } |
| 25 | |||
| 26 | /** | ||
| 27 | * 新增宗地基本信息 | ||
| 28 | */ | ||
| 29 | export function getBdcdyh (dpdm,dptype) { | ||
| 30 | return request({ | ||
| 31 | url: '/system/generator/getBdcdyh', | ||
| 32 | method: 'get', | ||
| 33 | params:{ | ||
| 34 | dpdm:dpdm, | ||
| 35 | dptype:dptype | ||
| 36 | } | ||
| 37 | }) | ||
| 38 | } | ||
| 25 | /** | 39 | /** |
| 26 | * 查询界址点 | 40 | * 查询界址点 |
| 27 | */ | 41 | */ | ... | ... |
| ... | @@ -69,13 +69,13 @@ const constantRoutes = [ | ... | @@ -69,13 +69,13 @@ const constantRoutes = [ |
| 69 | path: "/dz", | 69 | path: "/dz", |
| 70 | name: "多幢", | 70 | name: "多幢", |
| 71 | code: "1-2", | 71 | code: "1-2", |
| 72 | component: () => import("@/views/basic/dz/index"), | 72 | component: () => import("@/views/systemDZ/index"), |
| 73 | }, | 73 | }, |
| 74 | { | 74 | { |
| 75 | path: "/h", | 75 | path: "/h", |
| 76 | name: "户", | 76 | name: "户", |
| 77 | code: "1-3", | 77 | code: "1-3", |
| 78 | component: () => import("@/views/basic/h/index"), | 78 | component: () => import("@/views/systemH/index"), |
| 79 | }, | 79 | }, |
| 80 | { | 80 | { |
| 81 | path: "/zd", | 81 | path: "/zd", | ... | ... |
src/views/systemDZ/dzxx/index.vue
0 → 100644
| 1 | <template> | ||
| 2 | <div class="dz content-form"> | ||
| 3 | <el-form ref="form" :model="form" label-width="160px"> | ||
| 4 | <Qlr ref="qlrxxModule"></Qlr> | ||
| 5 | <table border="1" width="100%" cellspacing="1" cellpadding="2" class="dzTable"> | ||
| 6 | <tbody> | ||
| 7 | <tr> | ||
| 8 | <td colspan="1"></td> | ||
| 9 | <td colspan="1"></td> | ||
| 10 | <td colspan="1"></td> | ||
| 11 | <td colspan="1"></td> | ||
| 12 | <td colspan="1"></td> | ||
| 13 | <td colspan="1"></td> | ||
| 14 | <td colspan="1"></td> | ||
| 15 | <td colspan="1"></td> | ||
| 16 | <td colspan="1"></td> | ||
| 17 | <td colspan="1"></td> | ||
| 18 | <td colspan="1"></td> | ||
| 19 | <td colspan="1"></td> | ||
| 20 | </tr> | ||
| 21 | <tr height="30"> | ||
| 22 | <td colspan="12" align="center" ><font size="4">多幢基本信息</font></td> | ||
| 23 | </tr> | ||
| 24 | <tr height="30"> | ||
| 25 | <td colspan="2" align="center" >宗地代码</td> | ||
| 26 | <td colspan="4" > | ||
| 27 | <el-input v-model="form.zdbsm"></el-input> | ||
| 28 | </td> | ||
| 29 | <td colspan="2" align="center" >不动产单元号</td> | ||
| 30 | <td colspan="4" > | ||
| 31 | <el-input v-model="form.dyhbsm" style="width: 70%"></el-input> | ||
| 32 | <el-button @click.prevent="" size="mini" type="primary" style="width:25%;margin-left:3%">生成</el-button> | ||
| 33 | </td> | ||
| 34 | </tr> | ||
| 35 | <tr height="30"> | ||
| 36 | <td colspan="2" align="center" >项目名称</td> | ||
| 37 | <td colspan="4" > | ||
| 38 | <el-input v-model="form.xmmc"></el-input> | ||
| 39 | </td> | ||
| 40 | <td colspan="2" align="center" >房屋性质</td> | ||
| 41 | <td colspan="4" > | ||
| 42 | <el-select v-model="form.fwxzbsm" placeholder="请选择" > | ||
| 43 | <el-option | ||
| 44 | v-for="item in options" | ||
| 45 | :key="item.value" | ||
| 46 | :label="item.label" | ||
| 47 | :value="item.value"> | ||
| 48 | </el-option> | ||
| 49 | </el-select> | ||
| 50 | </td> | ||
| 51 | </tr> | ||
| 52 | |||
| 53 | <tr height="30"> | ||
| 54 | <td colspan="2" align="center" >房屋类型</td> | ||
| 55 | <td colspan="4" > | ||
| 56 | <el-select v-model="form.fwxzbsm" placeholder="请选择" > | ||
| 57 | <el-option | ||
| 58 | v-for="item in options" | ||
| 59 | :key="item.value" | ||
| 60 | :label="item.label" | ||
| 61 | :value="item.value"> | ||
| 62 | </el-option> | ||
| 63 | </el-select> | ||
| 64 | </td> | ||
| 65 | <td colspan="2" align="center" >竣工日期</td> | ||
| 66 | <td colspan="4" > | ||
| 67 | <el-date-picker | ||
| 68 | v-model="form.jgrq" | ||
| 69 | type="date" | ||
| 70 | placeholder="选择日期"> | ||
| 71 | </el-date-picker> | ||
| 72 | </td> | ||
| 73 | </tr> | ||
| 74 | |||
| 75 | <tr height="30"> | ||
| 76 | <td colspan="2" align="center" >产别</td> | ||
| 77 | <td colspan="4" > | ||
| 78 | <el-select v-model="form.fwcbbsm" placeholder="请选择" > | ||
| 79 | <el-option | ||
| 80 | v-for="item in options" | ||
| 81 | :key="item.value" | ||
| 82 | :label="item.label" | ||
| 83 | :value="item.value"> | ||
| 84 | </el-option> | ||
| 85 | </el-select> | ||
| 86 | </td> | ||
| 87 | <td colspan="2" align="center" >产权来源</td> | ||
| 88 | <td colspan="4" > | ||
| 89 | <el-select v-model="form.fwcqlybsm" placeholder="请选择" > | ||
| 90 | <el-option | ||
| 91 | v-for="item in options" | ||
| 92 | :key="item.value" | ||
| 93 | :label="item.label" | ||
| 94 | :value="item.value"> | ||
| 95 | </el-option> | ||
| 96 | </el-select> | ||
| 97 | </td> | ||
| 98 | </tr> | ||
| 99 | |||
| 100 | <tr height="30" v-for="(item1,index) in form.ytList" :key="index"> | ||
| 101 | <td v-if="index===0" colspan="2" :rowspan="ytTitleRowspan" align="center" id="ytTitle"> | ||
| 102 | <el-button type="primary" size="mini" style="margin-right: 10px" @click="addYtInfo">添加</el-button> | ||
| 103 | <span>用途</span> | ||
| 104 | </td> | ||
| 105 | |||
| 106 | <td colspan="1" align="center" > | ||
| 107 | <el-button type="info" size="mini" style="" @click="deleteYtInfo(index)" circle>删除</el-button> | ||
| 108 | 规划用途 | ||
| 109 | </td> | ||
| 110 | <td colspan="4" align="center" > | ||
| 111 | <el-select v-model="item1.fwytzdbsm" placeholder="请选择" > | ||
| 112 | <el-option | ||
| 113 | v-for="item in options" | ||
| 114 | :key="item.value" | ||
| 115 | :label="item.label" | ||
| 116 | :value="item.value"> | ||
| 117 | </el-option> | ||
| 118 | </el-select> | ||
| 119 | </td> | ||
| 120 | <td colspan="1" align="center" >用途</td> | ||
| 121 | <td colspan="4" align="center" > | ||
| 122 | <el-select v-model="item1.fwsjytbsm" placeholder="请选择" > | ||
| 123 | <el-option | ||
| 124 | v-for="item in options" | ||
| 125 | :key="item.value" | ||
| 126 | :label="item.label" | ||
| 127 | :value="item.value"> | ||
| 128 | </el-option> | ||
| 129 | </el-select> | ||
| 130 | </td> | ||
| 131 | </tr> | ||
| 132 | |||
| 133 | <tr height="30"> | ||
| 134 | <td colspan="2" align="center" >共有土地面积(㎡)</td> | ||
| 135 | <td colspan="2" > | ||
| 136 | <el-input v-model="form.zdmj"></el-input> | ||
| 137 | </td> | ||
| 138 | <td colspan="2" align="center" >分摊土地面积(㎡)</td> | ||
| 139 | <td colspan="2" > | ||
| 140 | <el-input v-model="form.fttdsymj"></el-input> | ||
| 141 | </td> | ||
| 142 | <td colspan="2" align="center" >多幢独用土地面积(㎡)</td> | ||
| 143 | <td colspan="2" > | ||
| 144 | <el-input v-model="form.dlsytdmj"></el-input> | ||
| 145 | </td> | ||
| 146 | </tr> | ||
| 147 | |||
| 148 | <tr> | ||
| 149 | <td colspan="12" rowspan="4" align="center"> | ||
| 150 | <Qlxz ref="qlxzModule"></Qlxz> | ||
| 151 | </td> | ||
| 152 | </tr> | ||
| 153 | <tr></tr> | ||
| 154 | <tr></tr> | ||
| 155 | <tr></tr> | ||
| 156 | |||
| 157 | |||
| 158 | <tr height="30"> | ||
| 159 | <td colspan="2" align="center" > | ||
| 160 | <span>坐落</span> | ||
| 161 | </td> | ||
| 162 | <td colspan="10" > | ||
| 163 | <el-input v-model="form.zl"></el-input> | ||
| 164 | </td> | ||
| 165 | </tr> | ||
| 166 | |||
| 167 | <tr height="30"> | ||
| 168 | <td colspan="2" rowspan="2" align="center" > | ||
| 169 | <span>附加说明</span> | ||
| 170 | </td> | ||
| 171 | <td colspan="10" rowspan="2" > | ||
| 172 | <el-input v-model="form.bz" type="textarea"></el-input> | ||
| 173 | </td> | ||
| 174 | </tr> | ||
| 175 | <tr height="30"> | ||
| 176 | </tr> | ||
| 177 | |||
| 178 | <tr height="30"> | ||
| 179 | <td colspan="2" rowspan="2" align="center" > | ||
| 180 | <span>调查意见</span> | ||
| 181 | </td> | ||
| 182 | <td colspan="10" > | ||
| 183 | <el-input v-model="form.name"></el-input> | ||
| 184 | </td> | ||
| 185 | </tr> | ||
| 186 | |||
| 187 | <tr height="30"> | ||
| 188 | <td colspan="4" rowspan="2" align="right" style="width:8.33%;padding-right:10px"> | ||
| 189 | <span>审查员</span> | ||
| 190 | </td> | ||
| 191 | <td colspan="2" > | ||
| 192 | <el-input v-model="form.name"></el-input> | ||
| 193 | </td> | ||
| 194 | <td colspan="2" rowspan="2" align="right" style="width:8.33%;padding-right:10px"> | ||
| 195 | <span>审查日期</span> | ||
| 196 | </td> | ||
| 197 | <td colspan="2" > | ||
| 198 | <el-date-picker | ||
| 199 | v-model="form.date" | ||
| 200 | type="date" | ||
| 201 | placeholder="选择日期"> | ||
| 202 | </el-date-picker> | ||
| 203 | </td> | ||
| 204 | </tr> | ||
| 205 | </tbody> | ||
| 206 | </table> | ||
| 207 | </el-form> | ||
| 208 | <div style="min-height: 40px;text-align: center;margin-top: 10px"> | ||
| 209 | <el-button type="success" @click="onSave">保存</el-button> | ||
| 210 | <el-button type="primary" @click="onSubmit">提交</el-button> | ||
| 211 | </div> | ||
| 212 | </div> | ||
| 213 | |||
| 214 | </template> | ||
| 215 | |||
| 216 | <script> | ||
| 217 | import Qlr from "../../../components/formMenu/qlr"; | ||
| 218 | import Qlxz from "../../../components/formMenu/qlxz"; | ||
| 219 | export default { | ||
| 220 | name:'zrz', | ||
| 221 | components:{ | ||
| 222 | Qlr, | ||
| 223 | Qlxz, | ||
| 224 | }, | ||
| 225 | data () { | ||
| 226 | return { | ||
| 227 | form:{ | ||
| 228 | dzbsm:'', //多幢标识码 | ||
| 229 | zdbsm:'', //宗地标识码 | ||
| 230 | dyhbsm:'', //不动产单元号标识码 | ||
| 231 | zl:'', //坐落 | ||
| 232 | xmmc:'', //项目名称 | ||
| 233 | jgrq:'', //竣工日期 | ||
| 234 | bz:'', //备注 | ||
| 235 | fwxzbsm:'', //房屋性质ID | ||
| 236 | fwcbbsm:'', //房屋产别ID | ||
| 237 | fwcqlybsm:'', //房屋产权来源ID | ||
| 238 | dlsytdmj:'', //独立使用土地面积 | ||
| 239 | fttdsymj:'', //分摊土地使用面积 | ||
| 240 | zdmj:'', //占地面积 | ||
| 241 | name:'', | ||
| 242 | date:'', | ||
| 243 | ytList:[{ | ||
| 244 | glbsm:'', //关联标识码 | ||
| 245 | fwytzdbsm:'', //房屋用途字典标识码 | ||
| 246 | sx:'', //顺序 | ||
| 247 | fwsjytbsm:'', //房屋实际用途字典标识码 | ||
| 248 | }], | ||
| 249 | qlxzList:[{ | ||
| 250 | qlxzdm:'', //权利性质代码 | ||
| 251 | glbsm:'', //宗地BSM、自然幢BSM、户BSM、多幢BSM、宗海BSM | ||
| 252 | qlxzzdbsm:'', //权利性质字典表标识码 | ||
| 253 | qlxzmc:'', //权利名称名称 | ||
| 254 | zhqlxzlx:'', //除宗海数据外,默认都是空;0:用海类型权利性质;2:海岛用途权利性质 | ||
| 255 | addQjTdytRequestList:[{ | ||
| 256 | }], //土地用途新增实体列表 | ||
| 257 | }] | ||
| 258 | }, | ||
| 259 | options: [{ | ||
| 260 | value: '选项1', | ||
| 261 | label: '黄金糕' | ||
| 262 | }, { | ||
| 263 | value: '选项2', | ||
| 264 | label: '双皮奶' | ||
| 265 | }, { | ||
| 266 | value: '选项3', | ||
| 267 | label: '蚵仔煎' | ||
| 268 | }, { | ||
| 269 | value: '选项4', | ||
| 270 | label: '龙须面' | ||
| 271 | }, { | ||
| 272 | value: '选项5', | ||
| 273 | label: '北京烤鸭' | ||
| 274 | }], | ||
| 275 | value: '', | ||
| 276 | ytTitleRowspan:1, //用途的单元格垂直合并数量 | ||
| 277 | fwjgTitleRowspan:1, //房屋结构的单元格垂直合并数量 | ||
| 278 | qlxzGroupTitleRowspan:1, //房屋结构的单元格垂直合并数量 | ||
| 279 | qlxzItemTitleRowspan:1, //房屋结构的单元格垂直合并数量 | ||
| 280 | } | ||
| 281 | }, | ||
| 282 | methods: { | ||
| 283 | addYtInfo(){ | ||
| 284 | this.form.ytList.push({ | ||
| 285 | glbsm:'', | ||
| 286 | fwytzdbsm:'', | ||
| 287 | fwsjytbsm:'', | ||
| 288 | sx:'', | ||
| 289 | }); | ||
| 290 | this.ytTitleRowspan=this.form.ytList.length; | ||
| 291 | }, | ||
| 292 | deleteYtInfo(index){ | ||
| 293 | if(this.form.ytList.length<=1){ | ||
| 294 | this.$message({ | ||
| 295 | message: '不能删除,最少含有一条用途信息', | ||
| 296 | type: 'warning' | ||
| 297 | }); | ||
| 298 | }else{ | ||
| 299 | this.form.ytList.splice(index,1); | ||
| 300 | this.ytTitleRowspan=this.form.ytList.length; | ||
| 301 | } | ||
| 302 | }, | ||
| 303 | addFwjgInfo(){ | ||
| 304 | this.form.fwjgList.push({ | ||
| 305 | fwjgzdbsm:'', //房屋结构字典标识码 | ||
| 306 | glbsm:'', //关联标识码 | ||
| 307 | sx:'', //顺序 | ||
| 308 | }); | ||
| 309 | this.fwjgTitleRowspan=this.form.fwjgList.length; | ||
| 310 | }, | ||
| 311 | deleteFwjgInfo(index){ | ||
| 312 | if(this.form.fwjgList.length<=1){ | ||
| 313 | this.$message({ | ||
| 314 | message: '不能删除,最少含有一条房屋结构信息', | ||
| 315 | type: 'warning' | ||
| 316 | }); | ||
| 317 | }else{ | ||
| 318 | this.form.fwjgList.splice(index,1); | ||
| 319 | this.fwjgTitleRowspan=this.form.fwjgList.length; | ||
| 320 | } | ||
| 321 | }, | ||
| 322 | addQlxzGroup(){ | ||
| 323 | this.form.qlxzList.push({ | ||
| 324 | qlxzdm: '', //权利性质代码 | ||
| 325 | glbsm: '', //宗地BSM、自然幢BSM、户BSM、多幢BSM、宗海BSM | ||
| 326 | qlxzzdbsm: '', //权利性质字典表标识码 | ||
| 327 | qlxzmc: '', //权利名称名称 | ||
| 328 | zhqlxzlx: '', //除宗海数据外,默认都是空;0:用海类型权利性质;2:海岛用途权利性质 | ||
| 329 | addQjTdytRequestList: [{}] | ||
| 330 | }); | ||
| 331 | }, | ||
| 332 | deleteQlxzGroup(index){ | ||
| 333 | if(this.form.qlxzList.length<=1){ | ||
| 334 | this.$message({ | ||
| 335 | message: '不能删除,最少含有一条权利性质信息', | ||
| 336 | type: 'warning' | ||
| 337 | }); | ||
| 338 | }else{ | ||
| 339 | this.form.qlxzList.splice(index,1); | ||
| 340 | } | ||
| 341 | }, | ||
| 342 | addQlxzItem(index){ | ||
| 343 | this.form.qlxzList | ||
| 344 | }, | ||
| 345 | |||
| 346 | deleteQlxzItem(index){ | ||
| 347 | |||
| 348 | }, | ||
| 349 | |||
| 350 | |||
| 351 | onSave(){ | ||
| 352 | console.log(this.form) | ||
| 353 | }, | ||
| 354 | onSubmit(){ | ||
| 355 | console.log(this.form) | ||
| 356 | } | ||
| 357 | } | ||
| 358 | } | ||
| 359 | </script> | ||
| 360 | <style rel="stylesheet/less" lang="less" scoped> | ||
| 361 | .dz { | ||
| 362 | min-height: 200px; | ||
| 363 | width: 80%; | ||
| 364 | margin-top: 10px; | ||
| 365 | float: left; | ||
| 366 | |||
| 367 | /deep/.el-input__inner{ | ||
| 368 | width: 100%; | ||
| 369 | border: 0; | ||
| 370 | } | ||
| 371 | |||
| 372 | /deep/textarea{ | ||
| 373 | width: 100%; | ||
| 374 | border: 0; | ||
| 375 | } | ||
| 376 | |||
| 377 | |||
| 378 | .el-form-item{ | ||
| 379 | font-weight: bold; | ||
| 380 | font-size: xx-large | ||
| 381 | } | ||
| 382 | |||
| 383 | table{ | ||
| 384 | background: #fff; | ||
| 385 | } | ||
| 386 | |||
| 387 | td{ | ||
| 388 | //bgcolor:#F1F4FC; | ||
| 389 | bgcolor:#fff; | ||
| 390 | width:8.33% | ||
| 391 | } | ||
| 392 | |||
| 393 | .el-select{ | ||
| 394 | display:block; | ||
| 395 | } | ||
| 396 | |||
| 397 | table{ | ||
| 398 | font-size: 14px; | ||
| 399 | } | ||
| 400 | |||
| 401 | .dzTable{ | ||
| 402 | margin-top: 10px; | ||
| 403 | } | ||
| 404 | } | ||
| 405 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | <template> | ||
| 2 | <div class="content_box"> | ||
| 3 | <el-tabs v-model="activeName" @tab-click="handleClick"> | ||
| 4 | <el-tab-pane label="自然幢信息" name="dzxx"><dzxx></dzxx></el-tab-pane> | ||
| 5 | </el-tabs> | ||
| 6 | </div> | ||
| 7 | </template> | ||
| 8 | |||
| 9 | <script> | ||
| 10 | import dzxx from "./dzxx"; | ||
| 11 | export default { | ||
| 12 | name: "", | ||
| 13 | components: { | ||
| 14 | dzxx | ||
| 15 | }, | ||
| 16 | props: {}, | ||
| 17 | data() { | ||
| 18 | return { | ||
| 19 | activeName: "dzxx", | ||
| 20 | }; | ||
| 21 | }, | ||
| 22 | methods: { | ||
| 23 | handleClick(tab, event) { | ||
| 24 | console.log(tab, event); | ||
| 25 | }, | ||
| 26 | }, | ||
| 27 | created() {}, | ||
| 28 | mounted() {}, | ||
| 29 | computed: {}, | ||
| 30 | watch: {}, | ||
| 31 | }; | ||
| 32 | </script> | ||
| 33 | <style scoped lang="less"></style> | ... | ... |
src/views/systemH/hxx/index.vue
0 → 100644
| 1 | <template> | ||
| 2 | <div class="h content-form"> | ||
| 3 | <el-form ref="form" :model="form" label-width="160px"> | ||
| 4 | <Qlr ref="qlrxxModule"></Qlr> | ||
| 5 | <table border="1" width="100%" cellspacing="1" cellpadding="2" class="hTable"> | ||
| 6 | <tbody> | ||
| 7 | <tr> | ||
| 8 | <td colspan="1"></td> | ||
| 9 | <td colspan="1"></td> | ||
| 10 | <td colspan="1"></td> | ||
| 11 | <td colspan="1"></td> | ||
| 12 | <td colspan="1"></td> | ||
| 13 | <td colspan="1"></td> | ||
| 14 | <td colspan="1"></td> | ||
| 15 | <td colspan="1"></td> | ||
| 16 | <td colspan="1"></td> | ||
| 17 | <td colspan="1"></td> | ||
| 18 | <td colspan="1"></td> | ||
| 19 | <td colspan="1"></td> | ||
| 20 | </tr> | ||
| 21 | <tr height="30"> | ||
| 22 | <td colspan="12" align="center" ><font size="4">户基本信息</font></td> | ||
| 23 | </tr> | ||
| 24 | <tr height="30"> | ||
| 25 | <td colspan="2" align="center" >宗地代码</td> | ||
| 26 | <td colspan="4" > | ||
| 27 | <el-input v-model="form.zdbsm"></el-input> | ||
| 28 | </td> | ||
| 29 | <td colspan="2" align="center" >自然幢号</td> | ||
| 30 | <td colspan="4" > | ||
| 31 | <el-input v-model="form.zrzh"></el-input> | ||
| 32 | </td> | ||
| 33 | </tr> | ||
| 34 | <tr height="30"> | ||
| 35 | <td colspan="2" align="center" >不动产单元号</td> | ||
| 36 | <!-- todo 此处暂时存放的是不动产单元号标识码,而不是不动产单元号--> | ||
| 37 | <td colspan="4" > | ||
| 38 | <el-input v-model="form.dyhbsm" style="width: 70%"></el-input> | ||
| 39 | <el-button @click.prevent="" size="mini" type="primary" style="width:25%;margin-left:3%">生成</el-button> | ||
| 40 | </td> | ||
| 41 | <td colspan="2" align="center" >原不动产单元</td> | ||
| 42 | <td colspan="4" > | ||
| 43 | <el-input v-model="form.ydybsm"></el-input> | ||
| 44 | </td> | ||
| 45 | </tr> | ||
| 46 | |||
| 47 | <tr height="30"> | ||
| 48 | <td colspan="2" align="center" >逻辑幢号</td> | ||
| 49 | <td colspan="4" > | ||
| 50 | <el-input v-model="form.ljzbsm"></el-input> | ||
| 51 | </td> | ||
| 52 | <td colspan="2" align="center" >层号</td> | ||
| 53 | <td colspan="4" > | ||
| 54 | <el-input v-model="form.cbsm"></el-input> | ||
| 55 | </td> | ||
| 56 | </tr> | ||
| 57 | |||
| 58 | <tr height="30"> | ||
| 59 | <td colspan="2" align="center" >实际层数</td> | ||
| 60 | <td colspan="4" > | ||
| 61 | <el-input v-model="form.sjcs"></el-input> | ||
| 62 | </td> | ||
| 63 | <td colspan="2" align="center" >实际层</td> | ||
| 64 | <td colspan="4" > | ||
| 65 | <el-input v-model="form.sjc"></el-input> | ||
| 66 | </td> | ||
| 67 | </tr> | ||
| 68 | |||
| 69 | <tr height="30"> | ||
| 70 | <td colspan="2" align="center" >所在单元</td> | ||
| 71 | <td colspan="4" > | ||
| 72 | <el-input v-model="form.dyhbsm"></el-input> | ||
| 73 | </td> | ||
| 74 | <td colspan="2" align="center" >房屋编号</td> | ||
| 75 | <td colspan="4" > | ||
| 76 | <el-input v-model="form.fwbh"></el-input> | ||
| 77 | </td> | ||
| 78 | </tr> | ||
| 79 | |||
| 80 | <tr height="30"> | ||
| 81 | <td colspan="2" align="center" >房屋类型</td> | ||
| 82 | <td colspan="4" > | ||
| 83 | <el-select v-model="form.fwlxbsm" placeholder="请选择" > | ||
| 84 | <el-option | ||
| 85 | v-for="item in options" | ||
| 86 | :key="item.value" | ||
| 87 | :label="item.label" | ||
| 88 | :value="item.value"> | ||
| 89 | </el-option> | ||
| 90 | </el-select> | ||
| 91 | </td> | ||
| 92 | <td colspan="2" align="center" >房屋性质</td> | ||
| 93 | <td colspan="4" > | ||
| 94 | <el-select v-model="form.fwxzbsm" placeholder="请选择" > | ||
| 95 | <el-option | ||
| 96 | v-for="item in options" | ||
| 97 | :key="item.value" | ||
| 98 | :label="item.label" | ||
| 99 | :value="item.value"> | ||
| 100 | </el-option> | ||
| 101 | </el-select> | ||
| 102 | </td> | ||
| 103 | </tr> | ||
| 104 | |||
| 105 | <tr height="30"> | ||
| 106 | <td colspan="2" align="center" >户号</td> | ||
| 107 | <td colspan="4" > | ||
| 108 | <el-input v-model="form.hh"></el-input> | ||
| 109 | </td> | ||
| 110 | <td colspan="2" align="center" >室号</td> | ||
| 111 | <td colspan="4" > | ||
| 112 | <el-input v-model="form.shbw"></el-input> | ||
| 113 | </td> | ||
| 114 | </tr> | ||
| 115 | |||
| 116 | <tr height="30"> | ||
| 117 | <td colspan="2" align="center" >户型</td> | ||
| 118 | <td colspan="4" > | ||
| 119 | <el-select v-model="form.hxbsm" placeholder="请选择" > | ||
| 120 | <el-option | ||
| 121 | v-for="item in options" | ||
| 122 | :key="item.value" | ||
| 123 | :label="item.label" | ||
| 124 | :value="item.value"> | ||
| 125 | </el-option> | ||
| 126 | </el-select> | ||
| 127 | </td> | ||
| 128 | <td colspan="2" align="center" >户型结构</td> | ||
| 129 | <td colspan="4" > | ||
| 130 | <el-select v-model="form.hxbsm" placeholder="请选择" > | ||
| 131 | <el-option | ||
| 132 | v-for="item in options" | ||
| 133 | :key="item.value" | ||
| 134 | :label="item.label" | ||
| 135 | :value="item.value"> | ||
| 136 | </el-option> | ||
| 137 | </el-select> | ||
| 138 | </td> | ||
| 139 | </tr> | ||
| 140 | |||
| 141 | <tr height="30"> | ||
| 142 | <td colspan="2" align="center" >产别</td> | ||
| 143 | <td colspan="4" > | ||
| 144 | <el-select v-model="form.fwcbbsm" placeholder="请选择" > | ||
| 145 | <el-option | ||
| 146 | v-for="item in options" | ||
| 147 | :key="item.value" | ||
| 148 | :label="item.label" | ||
| 149 | :value="item.value"> | ||
| 150 | </el-option> | ||
| 151 | </el-select> | ||
| 152 | </td> | ||
| 153 | <td colspan="2" align="center" >产权来源</td> | ||
| 154 | <td colspan="4" > | ||
| 155 | <el-select v-model="form.fwcqlybsm" placeholder="请选择" > | ||
| 156 | <el-option | ||
| 157 | v-for="item in options" | ||
| 158 | :key="item.value" | ||
| 159 | :label="item.label" | ||
| 160 | :value="item.value"> | ||
| 161 | </el-option> | ||
| 162 | </el-select> | ||
| 163 | </td> | ||
| 164 | </tr> | ||
| 165 | |||
| 166 | <tr height="30"> | ||
| 167 | <td colspan="2" rowspan="6" align="center" >预测</td> | ||
| 168 | <td colspan="2" align="center" >建筑面积(㎡) </td> | ||
| 169 | <td colspan="2" align="center" > | ||
| 170 | <el-input v-model="form.jzmj"></el-input> | ||
| 171 | </td> | ||
| 172 | <td colspan="2" rowspan="6" align="center" >实测</td> | ||
| 173 | <td colspan="2" align="center" >建筑面积(㎡)</td> | ||
| 174 | <td colspan="2" align="center" > | ||
| 175 | <el-input v-model="form.jzmj"></el-input> | ||
| 176 | </td> | ||
| 177 | </tr> | ||
| 178 | <tr height="30"> | ||
| 179 | <td colspan="2" align="center" >套内建筑面积(㎡))</td> | ||
| 180 | <td colspan="2" align="center" > | ||
| 181 | <el-input v-model="form.tnjzmj"></el-input> | ||
| 182 | </td> | ||
| 183 | <td colspan="2" align="center" >套内建筑面积(㎡)</td> | ||
| 184 | <td colspan="2" align="center" > | ||
| 185 | <el-input v-model="form.tnjzmj"></el-input> | ||
| 186 | </td> | ||
| 187 | </tr> | ||
| 188 | <tr height="30"> | ||
| 189 | <td colspan="2" align="center" >分摊建筑面积(㎡)</td> | ||
| 190 | <td colspan="2" align="center" > | ||
| 191 | <el-input v-model="form.ftjzmj"></el-input> | ||
| 192 | </td> | ||
| 193 | <td colspan="2" align="center" >分摊建筑面积(㎡)</td> | ||
| 194 | <td colspan="2" align="center" > | ||
| 195 | <el-input v-model="form.ftjzmj"></el-input> | ||
| 196 | </td> | ||
| 197 | </tr> | ||
| 198 | <tr height="30"> | ||
| 199 | <td colspan="2" align="center" >地下部分建筑面积(㎡)</td> | ||
| 200 | <td colspan="2" align="center" > | ||
| 201 | <el-input v-model="form.dxbfjzmj"></el-input> | ||
| 202 | </td> | ||
| 203 | <td colspan="2" align="center" >地下部分建筑面积(㎡)</td> | ||
| 204 | <td colspan="2" align="center" > | ||
| 205 | <el-input v-model="form.dxbfjzmj"></el-input> | ||
| 206 | </td> | ||
| 207 | </tr> | ||
| 208 | <tr height="30"> | ||
| 209 | <td colspan="2" align="center" >其它建筑面积(㎡)</td> | ||
| 210 | <td colspan="2" align="center" > | ||
| 211 | <el-input v-model="form.qtjzmj"></el-input> | ||
| 212 | </td> | ||
| 213 | <td colspan="2" align="center" >其它建筑面积(㎡)</td> | ||
| 214 | <td colspan="2" align="center" > | ||
| 215 | <el-input v-model="form.qtjzmj"></el-input> | ||
| 216 | </td> | ||
| 217 | </tr> | ||
| 218 | <tr height="30"> | ||
| 219 | <td colspan="2" align="center" >分摊系数</td> | ||
| 220 | <td colspan="2" align="center" > | ||
| 221 | <el-input v-model="form.ftxs"></el-input> | ||
| 222 | </td> | ||
| 223 | <td colspan="2" align="center" >分摊系数</td> | ||
| 224 | <td colspan="2" align="center" > | ||
| 225 | <el-input v-model="form.ftxs"></el-input> | ||
| 226 | </td> | ||
| 227 | </tr> | ||
| 228 | |||
| 229 | |||
| 230 | <tr height="30" v-for="(item1,index) in form.ytList" :key="index"> | ||
| 231 | <td v-if="index===0" colspan="2" :rowspan="ytTitleRowspan" align="center" id="ytTitle"> | ||
| 232 | <el-button type="primary" size="mini" style="margin-right: 10px" @click="addYtInfo">添加</el-button> | ||
| 233 | <span>用途</span> | ||
| 234 | </td> | ||
| 235 | |||
| 236 | <td width="30" colspan="1" align="center" > | ||
| 237 | <el-button type="info" size="mini" style="" @click="deleteYtInfo(index)" circle>删除</el-button> | ||
| 238 | 规划用途 | ||
| 239 | </td> | ||
| 240 | <td width="30" colspan="4" align="center" > | ||
| 241 | <el-select v-model="item1.fwytzdbsm" placeholder="请选择" > | ||
| 242 | <el-option | ||
| 243 | v-for="item in options" | ||
| 244 | :key="item.value" | ||
| 245 | :label="item.label" | ||
| 246 | :value="item.value"> | ||
| 247 | </el-option> | ||
| 248 | </el-select> | ||
| 249 | </td> | ||
| 250 | <td width="30" colspan="1" align="center" >用途</td> | ||
| 251 | <td width="30" colspan="4" align="center" > | ||
| 252 | <el-select v-model="item1.fwsjytbsm" placeholder="请选择" > | ||
| 253 | <el-option | ||
| 254 | v-for="item in options" | ||
| 255 | :key="item.value" | ||
| 256 | :label="item.label" | ||
| 257 | :value="item.value"> | ||
| 258 | </el-option> | ||
| 259 | </el-select> | ||
| 260 | </td> | ||
| 261 | </tr> | ||
| 262 | |||
| 263 | <tr height="30" v-for="(item1,index) in form.fwjgList" :key="'jg'+index"> | ||
| 264 | <td colspan="2" v-if="index===0" :rowspan="fwjgTitleRowspan" align="center" > | ||
| 265 | <el-button type="primary" size="mini" style="margin-right: 10px" @click="addFwjgInfo">添加</el-button> | ||
| 266 | <span>房屋结构</span> | ||
| 267 | </td> | ||
| 268 | <td colspan="1" align="center" > | ||
| 269 | <span @click="deleteFwjgInfo(index)">删除</span> | ||
| 270 | </td> | ||
| 271 | <td colspan="9" > | ||
| 272 | <el-select v-model="item1.fwjgzdbsm" placeholder="请选择" > | ||
| 273 | <el-option | ||
| 274 | v-for="item in options" | ||
| 275 | :key="item.value" | ||
| 276 | :label="item.label" | ||
| 277 | :value="item.value"> | ||
| 278 | </el-option> | ||
| 279 | </el-select> | ||
| 280 | </td> | ||
| 281 | </tr> | ||
| 282 | |||
| 283 | <tr height="30"> | ||
| 284 | <td colspan="2" align="center" >共有土地面积(㎡)</td> | ||
| 285 | <td colspan="2" > | ||
| 286 | <el-input v-model="form.zdmj"></el-input> | ||
| 287 | </td> | ||
| 288 | <td colspan="2" align="center" >分摊土地面积(㎡)</td> | ||
| 289 | <td colspan="2" > | ||
| 290 | <el-input v-model="form.fttdsymj"></el-input> | ||
| 291 | </td> | ||
| 292 | <td colspan="2" align="center" >多幢独用土地面积(㎡)</td> | ||
| 293 | <td colspan="2" > | ||
| 294 | <el-input v-model="form.dlsytdmj"></el-input> | ||
| 295 | </td> | ||
| 296 | </tr> | ||
| 297 | |||
| 298 | |||
| 299 | <tr> | ||
| 300 | <td colspan="12" rowspan="4" align="center"> | ||
| 301 | <Qlxz ref="qlxzModule"></Qlxz> | ||
| 302 | </td> | ||
| 303 | </tr> | ||
| 304 | <tr></tr> | ||
| 305 | <tr></tr> | ||
| 306 | <tr></tr> | ||
| 307 | |||
| 308 | |||
| 309 | |||
| 310 | <tr height="30"> | ||
| 311 | <td colspan="2" align="center" > | ||
| 312 | <span>坐落</span> | ||
| 313 | </td> | ||
| 314 | <td colspan="10" > | ||
| 315 | <el-input v-model="form.zl"></el-input> | ||
| 316 | </td> | ||
| 317 | </tr> | ||
| 318 | |||
| 319 | <tr height="30"> | ||
| 320 | <td colspan="2" align="center" >东墙体归属</td> | ||
| 321 | <td colspan="4" > | ||
| 322 | <el-input v-model="form.dqtgs"></el-input> | ||
| 323 | </td> | ||
| 324 | <td colspan="2" align="center" >南墙体归属</td> | ||
| 325 | <td colspan="4" > | ||
| 326 | <el-input v-model="form.nqtgs"></el-input> | ||
| 327 | </td> | ||
| 328 | </tr> | ||
| 329 | |||
| 330 | <tr height="30"> | ||
| 331 | <td colspan="2" align="center" >西墙体归属</td> | ||
| 332 | <td colspan="4" > | ||
| 333 | <el-input v-model="form.xqtgs"></el-input> | ||
| 334 | </td> | ||
| 335 | <td colspan="2" align="center" >北墙体归属</td> | ||
| 336 | <td colspan="4" > | ||
| 337 | <el-input v-model="form.bqtgs"></el-input> | ||
| 338 | </td> | ||
| 339 | </tr> | ||
| 340 | |||
| 341 | <tr height="30"> | ||
| 342 | <td colspan="2" rowspan="2" align="center" > | ||
| 343 | <span>附加说明</span> | ||
| 344 | </td> | ||
| 345 | <td colspan="10" rowspan="2" > | ||
| 346 | <el-input v-model="form.bz" type="textarea"></el-input> | ||
| 347 | </td> | ||
| 348 | </tr> | ||
| 349 | <tr height="30"> | ||
| 350 | </tr> | ||
| 351 | |||
| 352 | <tr height="30"> | ||
| 353 | <td colspan="2" rowspan="2" align="center" > | ||
| 354 | <span>调查意见</span> | ||
| 355 | </td> | ||
| 356 | <td colspan="10" > | ||
| 357 | <el-input v-model="form.name"></el-input> | ||
| 358 | </td> | ||
| 359 | </tr> | ||
| 360 | |||
| 361 | <tr height="30"> | ||
| 362 | <td colspan="4" rowspan="2" align="right" style="width:8.33%;padding-right:10px"> | ||
| 363 | <span>审查员</span> | ||
| 364 | </td> | ||
| 365 | <td colspan="2" > | ||
| 366 | <el-input v-model="form.name"></el-input> | ||
| 367 | </td> | ||
| 368 | <td colspan="2" rowspan="2" align="right" style="width:8.33%;padding-right:10px"> | ||
| 369 | <span>审查日期</span> | ||
| 370 | </td> | ||
| 371 | <td colspan="2" > | ||
| 372 | <el-date-picker | ||
| 373 | v-model="form.date" | ||
| 374 | type="date" | ||
| 375 | placeholder="选择日期"> | ||
| 376 | </el-date-picker> | ||
| 377 | </td> | ||
| 378 | </tr> | ||
| 379 | </tbody> | ||
| 380 | </table> | ||
| 381 | </el-form> | ||
| 382 | <div style="min-height: 40px;text-align: center;margin-top: 10px"> | ||
| 383 | <el-button type="success" @click="onSave">保存</el-button> | ||
| 384 | <el-button type="primary" @click="onSubmit">提交</el-button> | ||
| 385 | </div> | ||
| 386 | </div> | ||
| 387 | |||
| 388 | </template> | ||
| 389 | |||
| 390 | <script> | ||
| 391 | import Qlr from "../../../components/formMenu/qlr"; | ||
| 392 | import Qlxz from "../../../components/formMenu/qlxz"; | ||
| 393 | export default { | ||
| 394 | name:'zrz', | ||
| 395 | components:{ | ||
| 396 | Qlr, | ||
| 397 | Qlxz, | ||
| 398 | }, | ||
| 399 | data () { | ||
| 400 | return { | ||
| 401 | form:{ | ||
| 402 | zrzbsm:'', //自然幢标识码 | ||
| 403 | ljzbsm:'', //逻辑幢标识码 | ||
| 404 | zdybsm:'', //幢单元标识码 | ||
| 405 | cbsm:'', //层标识码 | ||
| 406 | zdbsm:'', //宗地标识码 | ||
| 407 | dyhbsm:'', //不动产单元号标识码 | ||
| 408 | ydybsm:'', //原单元标识码 | ||
| 409 | zrzh:'', //自然幢号 | ||
| 410 | mjdwbsm:'', //面积单位编号 | ||
| 411 | sjcs:'', //实际层数 | ||
| 412 | hh:'', //户号 | ||
| 413 | hxbsm:'', //户型标识码 | ||
| 414 | dltdmj:'', //独立使用土地面积 | ||
| 415 | fttdmj:'', //分摊土地使用面积 | ||
| 416 | gytdmj:'', //共有土地面积 | ||
| 417 | fwlxbsm:'', //房屋类型标识码 | ||
| 418 | fwxzbsm:'', //房屋性质标识码 | ||
| 419 | sjc:'', //实际层 | ||
| 420 | dqtgs:'', //东墙体归属 | ||
| 421 | nqtgs:'', //南墙体归属 | ||
| 422 | xqtgs:'', //西墙体归属 | ||
| 423 | bqtgs:'', //北墙体归属 | ||
| 424 | fwbh:'', //房屋编号 | ||
| 425 | fjsm:'', //附加说明 | ||
| 426 | fwcbbsm:'', //房屋产别标识码 | ||
| 427 | sjhs:'', //实际户数 | ||
| 428 | shbw:'', //室号部位 | ||
| 429 | fwcqlybsm:'', //房屋产权来源标识码 | ||
| 430 | myc:'', //名义层 | ||
| 431 | qszt:'', //权属状态 | ||
| 432 | jzmj:'', //建筑面积 | ||
| 433 | tnjzmj:'', //套内建筑面积 | ||
| 434 | ftjzmj:'', //分摊建筑面积 | ||
| 435 | dxbfjzmj:'', //地下部分建筑面积 | ||
| 436 | qtjzmj:'', //其它建筑面积 | ||
| 437 | ftxs:'', //分摊系数 | ||
| 438 | scyclx:'', //实预测类型(0:预测,1:实测;),区别户是实测还是预测数据 | ||
| 439 | scycglbsm:'', //实测预测关联标识码 | ||
| 440 | ch:'', //层号 | ||
| 441 | bz:'', //备注 | ||
| 442 | name:'', | ||
| 443 | date:'', | ||
| 444 | ytList:[{ | ||
| 445 | glbsm:'', //关联标识码 | ||
| 446 | fwytzdbsm:'', //房屋用途字典标识码 | ||
| 447 | sx:'', //顺序 | ||
| 448 | fwsjytbsm:'', //房屋实际用途字典标识码 | ||
| 449 | }], | ||
| 450 | fwjgList:[{ | ||
| 451 | fwjgzdbsm:'', //房屋结构字典标识码 | ||
| 452 | glbsm:'', //关联标识码 | ||
| 453 | sx:'', //顺序 | ||
| 454 | }], | ||
| 455 | qlxzList:[{ | ||
| 456 | qlxzdm:'', //权利性质代码 | ||
| 457 | glbsm:'', //宗地BSM、自然幢BSM、户BSM、多幢BSM、宗海BSM | ||
| 458 | qlxzzdbsm:'', //权利性质字典表标识码 | ||
| 459 | qlxzmc:'', //权利名称名称 | ||
| 460 | zhqlxzlx:'', //除宗海数据外,默认都是空;0:用海类型权利性质;2:海岛用途权利性质 | ||
| 461 | addQjTdytRequestList:[{ | ||
| 462 | }], //土地用途新增实体列表 | ||
| 463 | }] | ||
| 464 | }, | ||
| 465 | options: [{ | ||
| 466 | value: '选项1', | ||
| 467 | label: '黄金糕' | ||
| 468 | }, { | ||
| 469 | value: '选项2', | ||
| 470 | label: '双皮奶' | ||
| 471 | }, { | ||
| 472 | value: '选项3', | ||
| 473 | label: '蚵仔煎' | ||
| 474 | }, { | ||
| 475 | value: '选项4', | ||
| 476 | label: '龙须面' | ||
| 477 | }, { | ||
| 478 | value: '选项5', | ||
| 479 | label: '北京烤鸭' | ||
| 480 | }], | ||
| 481 | value: '', | ||
| 482 | ytTitleRowspan:1, //用途的单元格垂直合并数量 | ||
| 483 | fwjgTitleRowspan:1, //房屋结构的单元格垂直合并数量 | ||
| 484 | } | ||
| 485 | }, | ||
| 486 | methods: { | ||
| 487 | addYtInfo(){ | ||
| 488 | this.form.ytList.push({ | ||
| 489 | glbsm:'', | ||
| 490 | fwytzdbsm:'', | ||
| 491 | fwsjytbsm:'', | ||
| 492 | sx:'', | ||
| 493 | }); | ||
| 494 | this.ytTitleRowspan=this.form.ytList.length; | ||
| 495 | }, | ||
| 496 | deleteYtInfo(index){ | ||
| 497 | if(this.form.ytList.length<=1){ | ||
| 498 | this.$message({ | ||
| 499 | message: '不能删除,最少含有一条用途信息', | ||
| 500 | type: 'warning' | ||
| 501 | }); | ||
| 502 | }else{ | ||
| 503 | this.form.ytList.splice(index,1); | ||
| 504 | this.ytTitleRowspan=this.form.ytList.length; | ||
| 505 | } | ||
| 506 | }, | ||
| 507 | addFwjgInfo(){ | ||
| 508 | this.form.fwjgList.push({ | ||
| 509 | fwjgzdbsm:'', //房屋结构字典标识码 | ||
| 510 | glbsm:'', //关联标识码 | ||
| 511 | sx:'', //顺序 | ||
| 512 | }); | ||
| 513 | this.fwjgTitleRowspan=this.form.fwjgList.length; | ||
| 514 | }, | ||
| 515 | deleteFwjgInfo(index){ | ||
| 516 | if(this.form.fwjgList.length<=1){ | ||
| 517 | this.$message({ | ||
| 518 | message: '不能删除,最少含有一条房屋结构信息', | ||
| 519 | type: 'warning' | ||
| 520 | }); | ||
| 521 | }else{ | ||
| 522 | this.form.fwjgList.splice(index,1); | ||
| 523 | this.fwjgTitleRowspan=this.form.fwjgList.length; | ||
| 524 | } | ||
| 525 | }, | ||
| 526 | onSave(){ | ||
| 527 | console.log(this.form) | ||
| 528 | }, | ||
| 529 | onSubmit(){ | ||
| 530 | console.log(this.form) | ||
| 531 | } | ||
| 532 | } | ||
| 533 | } | ||
| 534 | </script> | ||
| 535 | <style rel="stylesheet/less" lang="less" scoped> | ||
| 536 | .h { | ||
| 537 | min-height: 200px; | ||
| 538 | width: 80%; | ||
| 539 | margin-top: 10px; | ||
| 540 | float: left; | ||
| 541 | |||
| 542 | /deep/.el-input__inner{ | ||
| 543 | width: 100%; | ||
| 544 | border: 0; | ||
| 545 | } | ||
| 546 | |||
| 547 | /deep/textarea{ | ||
| 548 | width: 100%; | ||
| 549 | border: 0; | ||
| 550 | } | ||
| 551 | |||
| 552 | |||
| 553 | .el-form-item{ | ||
| 554 | font-weight: bold; | ||
| 555 | font-size: xx-large | ||
| 556 | } | ||
| 557 | |||
| 558 | table{ | ||
| 559 | background: #fff; | ||
| 560 | } | ||
| 561 | |||
| 562 | td{ | ||
| 563 | //bgcolor:#F1F4FC; | ||
| 564 | bgcolor:#fff; | ||
| 565 | width:8.33% | ||
| 566 | } | ||
| 567 | |||
| 568 | .el-select{ | ||
| 569 | display:block; | ||
| 570 | } | ||
| 571 | } | ||
| 572 | |||
| 573 | table{ | ||
| 574 | font-size: 14px; | ||
| 575 | } | ||
| 576 | |||
| 577 | .hTable{ | ||
| 578 | margin-top: 10px; | ||
| 579 | } | ||
| 580 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | <template> | ||
| 2 | <div class="content_box"> | ||
| 3 | <el-tabs v-model="activeName" @tab-click="handleClick"> | ||
| 4 | <el-tab-pane label="自然幢信息" name="hxx"><hxx></hxx></el-tab-pane> | ||
| 5 | </el-tabs> | ||
| 6 | </div> | ||
| 7 | </template> | ||
| 8 | |||
| 9 | <script> | ||
| 10 | import hxx from "./hxx"; | ||
| 11 | export default { | ||
| 12 | name: "", | ||
| 13 | components: { | ||
| 14 | hxx | ||
| 15 | }, | ||
| 16 | props: {}, | ||
| 17 | data() { | ||
| 18 | return { | ||
| 19 | activeName: "hxx", | ||
| 20 | }; | ||
| 21 | }, | ||
| 22 | methods: { | ||
| 23 | handleClick(tab, event) { | ||
| 24 | console.log(tab, event); | ||
| 25 | }, | ||
| 26 | }, | ||
| 27 | created() {}, | ||
| 28 | mounted() {}, | ||
| 29 | computed: {}, | ||
| 30 | watch: {}, | ||
| 31 | }; | ||
| 32 | </script> | ||
| 33 | <style scoped lang="less"></style> | ... | ... |
| ... | @@ -79,7 +79,7 @@ | ... | @@ -79,7 +79,7 @@ |
| 79 | class="formInput percent78" | 79 | class="formInput percent78" |
| 80 | v-model="formData.zddm" | 80 | v-model="formData.zddm" |
| 81 | /> | 81 | /> |
| 82 | <el-button type="primary" class="createBtn">生成</el-button> | 82 | <el-button type="primary" class="createBtn" @click="generatorCode">生成</el-button> |
| 83 | </td> | 83 | </td> |
| 84 | </tr> | 84 | </tr> |
| 85 | <tr> | 85 | <tr> |
| ... | @@ -271,6 +271,7 @@ | ... | @@ -271,6 +271,7 @@ |
| 271 | import Qlr from "../../../components/formMenu/qlr"; | 271 | import Qlr from "../../../components/formMenu/qlr"; |
| 272 | import Qlxz from "../../../components/formMenu/qlxz"; | 272 | import Qlxz from "../../../components/formMenu/qlxz"; |
| 273 | import { getDdicByMC } from "../../../api/common"; | 273 | import { getDdicByMC } from "../../../api/common"; |
| 274 | import { getBdcdyh } from "../../../api/zd"; | ||
| 274 | export default { | 275 | export default { |
| 275 | name: "", | 276 | name: "", |
| 276 | components: { | 277 | components: { |
| ... | @@ -329,6 +330,16 @@ export default { | ... | @@ -329,6 +330,16 @@ export default { |
| 329 | }, | 330 | }, |
| 330 | mounted() {}, | 331 | mounted() {}, |
| 331 | methods: { | 332 | methods: { |
| 333 | |||
| 334 | generatorCode(){ | ||
| 335 | getBdcdyh("860101555888GB","zd") | ||
| 336 | .then((res)=>{ | ||
| 337 | console.log(res) | ||
| 338 | this.formData.zddm=res.message.substring(0,19); | ||
| 339 | this.formData.bdcdyh=res.message; | ||
| 340 | }) | ||
| 341 | }, | ||
| 342 | |||
| 332 | getQlrxxData() { | 343 | getQlrxxData() { |
| 333 | console.log(this.$refs.qlrxxModule.getQlgyfsData()); //权利共有方式数据 | 344 | console.log(this.$refs.qlrxxModule.getQlgyfsData()); //权利共有方式数据 |
| 334 | console.log(this.$refs.qlrxxModule.getQlrxxData()); //权利人表格数据 | 345 | console.log(this.$refs.qlrxxModule.getQlrxxData()); //权利人表格数据 | ... | ... |
-
Please register or sign in to post a comment