26c15cd6 by 杨威
2 parents c878305f d517d898
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
10 <tr height="30"> 10 <tr height="30">
11 <td colspan="2" align="center" >宗地代码</td> 11 <td colspan="2" align="center" >宗地代码</td>
12 <td colspan="4" > 12 <td colspan="4" >
13 <el-input v-model="form.zddm"></el-input> 13 <el-input v-model="form.zddm" disabled="true"></el-input>
14 <el-input v-show="false" v-model="form.zdbsm"></el-input> 14 <el-input v-show="false" v-model="form.zdbsm"></el-input>
15 </td> 15 </td>
16 <td colspan="2" align="center" >自然幢号</td> 16 <td colspan="2" align="center" >自然幢号</td>
...@@ -324,7 +324,6 @@ ...@@ -324,7 +324,6 @@
324 glbsm:'', //关联标识码 324 glbsm:'', //关联标识码
325 sx:'', //顺序 325 sx:'', //顺序
326 }], 326 }],
327 qlxzList:[]
328 }, 327 },
329 options: [{ 328 options: [{
330 value: '选项1', 329 value: '选项1',
...@@ -392,35 +391,7 @@ ...@@ -392,35 +391,7 @@
392 onSave(){ 391 onSave(){
393 // this.loading=true; 392 // this.loading=true;
394 this.form.zrzbsm=this.bsm; 393 this.form.zrzbsm=this.bsm;
395 this.form.qlxzList= 394 this.form.qlxzList= this.$refs.qlxzModule.getQlxzDataList();
396 [{
397 "addQjTdytRequestList": [
398 {
399 "bz": "string",
400 "mj": 0,
401 "pzdjbsm": "string",
402 "pzdjmc": "string",
403 "pzytdm": "1",
404 "pzytmc": "string",
405 "pzytmj": 0,
406 "qlxzbsm": "string",
407 "sjdjbsm": "string",
408 "sjdjmc": "string",
409 "sjytdm": "1234",
410 "sjytmc": "string",
411 "sjytmj": 0,
412 "syqx": "string",
413 "tdsyjssj": "2020-10-09 03:15:37.730Z",
414 "tdsyqssj": "2020-10-09 03:15:37.730Z",
415 "tdzh": "string"
416 }
417 ],
418 "glbsm": "string",
419 "qlxzdm": "string",
420 "qlxzmc": "string",
421 "qlxzzdbsm": "string",
422 "zhqlxzlx": 0
423 }];
424 if(1>0){ 395 if(1>0){
425 saveZrzInfo(this.form).then((res)=>{ 396 saveZrzInfo(this.form).then((res)=>{
426 if(res.code===200){ 397 if(res.code===200){
...@@ -474,6 +445,31 @@ ...@@ -474,6 +445,31 @@
474 fwsjytbsm:'', //房屋实际用途字典标识码 445 fwsjytbsm:'', //房屋实际用途字典标识码
475 }) 446 })
476 } 447 }
448 this.fwjgTitleRowspan=this.form.fwjgList.length;
449 this.ytTitleRowspan=this.form.fwytList.length;
450 if(res.result.qjQlxzListVOS.length>0){
451 if(res.result.qjQlxzListVOS[0].list.length<1){
452 res.result.qjQlxzListVOS[0].list.push({
453 "pzdjbsm": "",
454 "pzdjmc": "",
455 "pzytdm": "",
456 "pzytmc": "",
457 "pzytmj": 0,
458 "qlxzbsm": "",
459 "sjdjbsm": "",
460 "sjdjmc": "",
461 "sjytdm": "",
462 "sjytmc": "",
463 "sjytmj": 0,
464 "syqx": "",
465 "tdsyjssj": "",
466 "tdsyqssj": "",
467 "tdzh": ""
468 })
469 }
470 //权利性质数据传给子组件
471 this.$refs.qlxzModule.countList = res.result.qjQlxzListVOS
472 }
477 } 473 }
478 }) 474 })
479 }, 475 },
...@@ -494,12 +490,11 @@ ...@@ -494,12 +490,11 @@
494 this.form.zrzbsm=this.$route.query.bsm; 490 this.form.zrzbsm=this.$route.query.bsm;
495 this.getZrzDetailByBsm(this.$route.query.bsm) 491 this.getZrzDetailByBsm(this.$route.query.bsm)
496 } 492 }
497 },
498 mounted() {
499 if(this.source!==1){ 493 if(this.source!==1){
500 this.getZrzDetailByBsm(this.$route.query.bsm) 494 this.getZrzDetailByBsm(this.$route.query.bsm)
501 } 495 }
502 } 496 },
497 mounted() {}
503 } 498 }
504 </script> 499 </script>
505 <style rel="stylesheet/less" lang="less" scoped> 500 <style rel="stylesheet/less" lang="less" scoped>
......