style:综合查询
Showing
3 changed files
with
28 additions
and
11 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-18 11:25:30 | 4 | * @LastEditTime: 2023-09-21 10:39:16 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -184,7 +184,6 @@ | ... | @@ -184,7 +184,6 @@ |
184 | * @author: renchao | 184 | * @author: renchao |
185 | */ | 185 | */ |
186 | handleLpbClick (item) { | 186 | handleLpbClick (item) { |
187 | console.log("item", item); | ||
188 | this.$popup('楼盘表', 'lpb/index', { | 187 | this.$popup('楼盘表', 'lpb/index', { |
189 | width: '85%', | 188 | width: '85%', |
190 | formData: { | 189 | formData: { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-19 10:04:04 | 4 | * @LastEditTime: 2023-09-21 10:35:34 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -150,8 +150,8 @@ | ... | @@ -150,8 +150,8 @@ |
150 | const { href } = this.$router.resolve( | 150 | const { href } = this.$router.resolve( |
151 | "/djbworkFrameview?bsmSlsq=" + | 151 | "/djbworkFrameview?bsmSlsq=" + |
152 | item.bsmSlsq + | 152 | item.bsmSlsq + |
153 | "&bestepid=" + | 153 | "&bsmBusiness=" + |
154 | item.bestepid + | 154 | item.bsmBusiness + |
155 | "&sqywbm=" + | 155 | "&sqywbm=" + |
156 | item.djywbm | 156 | item.djywbm |
157 | ); | 157 | ); |
... | @@ -160,10 +160,10 @@ | ... | @@ -160,10 +160,10 @@ |
160 | const { href } = this.$router.resolve( | 160 | const { href } = this.$router.resolve( |
161 | "/workFrameView?bsmSlsq=" + | 161 | "/workFrameView?bsmSlsq=" + |
162 | item.bsmSlsq + | 162 | item.bsmSlsq + |
163 | "&bestepid=" + | 163 | "&bsmBusiness=" + |
164 | item.bestepid | 164 | item.bsmBusiness |
165 | ); | 165 | ); |
166 | window.open(href, `workFrameView${item.bsmSlsq}`); | 166 | window.open(href, `workFrameView${item.bsmSlsq}`) |
167 | } | 167 | } |
168 | } | 168 | } |
169 | } | 169 | } | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-18 11:22:10 | 4 | * @LastEditTime: 2023-09-21 10:41:10 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -116,8 +116,26 @@ | ... | @@ -116,8 +116,26 @@ |
116 | * @author: renchao | 116 | * @author: renchao |
117 | */ | 117 | */ |
118 | openYwDialog (item) { | 118 | openYwDialog (item) { |
119 | const { href } = this.$router.resolve('/workFrameView?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + item.bsmBusiness + '&viewtype=3' + '&type=jdcx') | 119 | if (item.sjlx == "3") { |
120 | window.open(href, `urlname${item.bsmSlsq}`) | 120 | item.djywbm = "DJBBL"; |
121 | const { href } = this.$router.resolve( | ||
122 | "/djbworkFrameview?bsmSlsq=" + | ||
123 | item.bsmSlsq + | ||
124 | "&bsmBusiness=" + | ||
125 | item.bsmBusiness + | ||
126 | "&sqywbm=" + | ||
127 | item.djywbm | ||
128 | ); | ||
129 | window.open(href, `djbworkFrameview${item.bsmSlsq}`); | ||
130 | } else { | ||
131 | const { href } = this.$router.resolve( | ||
132 | "/workFrameView?bsmSlsq=" + | ||
133 | item.bsmSlsq + | ||
134 | "&bsmBusiness=" + | ||
135 | item.bsmBusiness | ||
136 | ); | ||
137 | window.open(href, `workFrameView${item.bsmSlsq}`) | ||
138 | } | ||
121 | } | 139 | } |
122 | } | 140 | } |
123 | } | 141 | } | ... | ... |
-
Please register or sign in to post a comment