e95e2c21 by “miaofang

Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev

2 parents 61cbd10e 76f3cd14
1 <template> 1 <template>
2 <div class="jtfccx-edit">
3 <div class="jtfccx-edit-con"> 2 <div class="jtfccx-edit-con">
4 <b class="title"></b> 3 <b class="title"></b>
5 <b class="title">房屋状况</b> 4 <b class="title">房屋状况</b>
...@@ -31,17 +30,16 @@ ...@@ -31,17 +30,16 @@
31 :pagination="false"> 30 :pagination="false">
32 </lb-table> 31 </lb-table>
33 </div> 32 </div>
34 </div>
35 </template> 33 </template>
36 34
37 <script> 35 <script>
38 import { datas, sendThis } from "./infodata"; 36 import { datas, sendThis } from "./infodata";
39 import { getFwmxInfo } from "@/api/jtfc.js"; 37 import { getFwmxInfo } from "@/api/jtfc.js";
40 export default { 38 export default {
41 props: { 39 props: {
42 formData: { 40 formData: {
43 type: Object, 41 type: Object,
44 default: () => {}, 42 default: () => { },
45 }, 43 },
46 }, 44 },
47 data () { 45 data () {
...@@ -69,7 +67,7 @@ export default { ...@@ -69,7 +67,7 @@ export default {
69 }; 67 };
70 }, 68 },
71 mounted () { 69 mounted () {
72 if(this.formData){ 70 if (this.formData) {
73 this.getDetailInfo() 71 this.getDetailInfo()
74 } 72 }
75 }, 73 },
...@@ -79,14 +77,14 @@ export default { ...@@ -79,14 +77,14 @@ export default {
79 * @param {*} data 77 * @param {*} data
80 * @author: renchao 78 * @author: renchao
81 */ 79 */
82 setResult(data){ 80 setResult (data) {
83 this.resultData = data 81 this.resultData = data
84 }, 82 },
85 /** 83 /**
86 * @description: getDetailInfo 84 * @description: getDetailInfo
87 * @author: renchao 85 * @author: renchao
88 */ 86 */
89 getDetailInfo(){ 87 getDetailInfo () {
90 this.$startLoading(); 88 this.$startLoading();
91 getFwmxInfo({ sqcxBsm: this.formData.bsmSqcx }).then((res) => { 89 getFwmxInfo({ sqcxBsm: this.formData.bsmSqcx }).then((res) => {
92 this.$endLoading(); 90 this.$endLoading();
...@@ -96,19 +94,22 @@ export default { ...@@ -96,19 +94,22 @@ export default {
96 }) 94 })
97 } 95 }
98 } 96 }
99 }; 97 };
100 </script> 98 </script>
101 <style scoped lang="scss"> 99 <style scoped lang="scss">
102 @import "~@/styles/mixin.scss"; 100 @import "~@/styles/mixin.scss";
103 101 .jtfccx-edit-con {
104 .table1 { 102 max-height: 85vh;
103 overflow-y: scroll;
104 }
105 .table1 {
105 border-spacing: 0; 106 border-spacing: 0;
106 border-collapse: collapse; 107 border-collapse: collapse;
107 width: 100%; 108 width: 100%;
108 } 109 }
109 110
110 .table1 td { 111 .table1 td {
111 border: 1px solid #acbed1; 112 border: 1px solid #acbed1;
112 height: 30px; 113 height: 30px;
113 } 114 }
114 </style> 115 </style>
......
...@@ -345,7 +345,6 @@ ...@@ -345,7 +345,6 @@
345 dyjlList: [], 345 dyjlList: [],
346 } 346 }
347 }, 347 },
348 //加载详细信息
349 /** 348 /**
350 * @description: 加载详细信息 349 * @description: 加载详细信息
351 * @author: renchao 350 * @author: renchao
...@@ -416,7 +415,6 @@ ...@@ -416,7 +415,6 @@
416 } 415 }
417 }) 416 })
418 }, 417 },
419 //添加申请人
420 /** 418 /**
421 * @description: 添加申请人 419 * @description: 添加申请人
422 * @author: renchao 420 * @author: renchao
...@@ -440,14 +438,12 @@ ...@@ -440,14 +438,12 @@
440 * @author: renchao 438 * @author: renchao
441 */ 439 */
442 remove (index, row, type) { 440 remove (index, row, type) {
443 console.log(type, 'type');
444 if (type == "sqr") { 441 if (type == "sqr") {
445 this.form.sqrList.splice(index, 1); 442 this.form.sqrList.splice(index, 1);
446 } else { 443 } else {
447 this.form.qlrList.splice(index, 1); 444 this.form.qlrList.splice(index, 1);
448 } 445 }
449 }, 446 },
450 //电话号码校验
451 /** 447 /**
452 * @description: 电话号码校验 448 * @description: 电话号码校验
453 * @param {*} row 449 * @param {*} row
...@@ -463,7 +459,6 @@ ...@@ -463,7 +459,6 @@
463 return true; 459 return true;
464 } 460 }
465 }, 461 },
466 //打印
467 /** 462 /**
468 * @description: 打印 463 * @description: 打印
469 * @author: renchao 464 * @author: renchao
...@@ -479,7 +474,6 @@ ...@@ -479,7 +474,6 @@
479 } 474 }
480 }); 475 });
481 }, 476 },
482 //打开打印预览
483 /** 477 /**
484 * @description: 打开打印预览 478 * @description: 打开打印预览
485 * @author: renchao 479 * @author: renchao
......
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
104 * @author: renchao 104 * @author: renchao
105 */ 105 */
106 handleAdd () { 106 handleAdd () {
107 this.$popupDialog("家庭房产查询", "sqcx/jtfc/components/addjtfc", { 107 this.$popupDialog("登记情况", "sqcx/jtfc/components/addjtfc", {
108 sqcxBsm: '' 108 sqcxBsm: ''
109 }, '80%') 109 }, '80%')
110 }, 110 },
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
114 * @author: renchao 114 * @author: renchao
115 */ 115 */
116 handleViewClick (row) { 116 handleViewClick (row) {
117 this.$popupDialog("家庭房产查询", "sqcx/jtfc/components/addjtfc", { 117 this.$popupDialog("登记情况", "sqcx/jtfc/components/addjtfc", {
118 sqcxBsm: row.bsmSqcx 118 sqcxBsm: row.bsmSqcx
119 }, '80%') 119 }, '80%')
120 } 120 }
......
...@@ -131,6 +131,9 @@ export default { ...@@ -131,6 +131,9 @@ export default {
131 case "B-ZSXG": 131 case "B-ZSXG":
132 this.$popupDialog("证书修改", "workflow/components/dialog/zsxg", { bsmSlsq: this.bsmSlsq, }, '55%', true) 132 this.$popupDialog("证书修改", "workflow/components/dialog/zsxg", { bsmSlsq: this.bsmSlsq, }, '55%', true)
133 break; 133 break;
134 case "B-SQD":
135
136 break;
134 case "B6": 137 case "B6":
135 //根据编号获取对应信息 138 //根据编号获取对应信息
136 getPrintTemplateByCode({ tmpno: 'dysqs' }).then(res => { 139 getPrintTemplateByCode({ tmpno: 'dysqs' }).then(res => {
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-10-18 13:57:34 4 * @LastEditTime: 2023-11-20 13:43:06
5 --> 5 -->
6 <template> 6 <template>
7 <div class="container"> 7 <div class="container">
......