f6743875 by renchao@pashanhoo.com

style:证书领取

1 parent 24661287
...@@ -54,7 +54,6 @@ ...@@ -54,7 +54,6 @@
54 ruleForm: { 54 ruleForm: {
55 bsmBdcqz: '', 55 bsmBdcqz: '',
56 szmc: '不动产权证书', 56 szmc: '不动产权证书',
57 bsmBdcqz: '',
58 szzh: '', 57 szzh: '',
59 ysxlh: '', 58 ysxlh: '',
60 }, 59 },
...@@ -69,6 +68,7 @@ ...@@ -69,6 +68,7 @@
69 //从按钮进入 68 //从按钮进入
70 this.getHeadTabBdcqz(); 69 this.getHeadTabBdcqz();
71 } 70 }
71
72 }, 72 },
73 methods: { 73 methods: {
74 /** 74 /**
...@@ -93,6 +93,9 @@ ...@@ -93,6 +93,9 @@
93 this.activeName = res.result[0].bsmBdcqz 93 this.activeName = res.result[0].bsmBdcqz
94 this.bdcqz = res.result[0] 94 this.bdcqz = res.result[0]
95 this.headTabBdcqz = res.result 95 this.headTabBdcqz = res.result
96 if (this.formData.bsmBdcqz) {
97 this.activeName = this.formData.bsmBdcqz
98 }
96 if (this.bdcqz.bdcqzlx == 1) { 99 if (this.bdcqz.bdcqzlx == 1) {
97 this.drawTextOnImage() 100 this.drawTextOnImage()
98 } else { 101 } else {
......
...@@ -349,7 +349,7 @@ ...@@ -349,7 +349,7 @@
349 </script> 349 </script>
350 <style scoped lang="scss"> 350 <style scoped lang="scss">
351 @import "~@/styles/public.scss"; 351 @import "~@/styles/public.scss";
352 /deep/ .back{ 352 /deep/ .back {
353 display: inline-block; 353 display: inline-block;
354 font-size: 14px; 354 font-size: 14px;
355 width: 20px; 355 width: 20px;
...@@ -358,7 +358,7 @@ ...@@ -358,7 +358,7 @@
358 line-height: 20px; 358 line-height: 20px;
359 margin-right: 4px; 359 margin-right: 4px;
360 text-align: center; 360 text-align: center;
361 background-color: rgba(171,12,12,0.1); 361 background-color: rgba(171, 12, 12, 0.1);
362 color: #B44747; 362 color: #b44747;
363 } 363 }
364 </style> 364 </style>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-10 14:05:49 4 * @LastEditTime: 2023-08-31 09:08:49
5 --> 5 -->
6 <template> 6 <template>
7 <div class="from-clues"> 7 <div class="from-clues">
...@@ -106,10 +106,11 @@ ...@@ -106,10 +106,11 @@
106 openDialog (item) { 106 openDialog (item) {
107 this.$startLoading() 107 this.$startLoading()
108 bdcqzPreview(item).then(res => { 108 bdcqzPreview(item).then(res => {
109 this.$endLoading()
110 this.$popupDialog("证书预览", "workflow/components/dialog/zsyl", { 109 this.$popupDialog("证书预览", "workflow/components/dialog/zsyl", {
111 bsmSlsq: item.bsmSlsq 110 bsmSlsq: item.bsmSlsq,
111 bsmBdcqz: item.bsmBdcqz
112 }, '1210px', true) 112 }, '1210px', true)
113 this.$endLoading()
113 }) 114 })
114 } 115 }
115 } 116 }
......