Merge remote-tracking branch 'origin/master' into master
Showing
1 changed file
with
12 additions
and
3 deletions
... | @@ -213,6 +213,7 @@ | ... | @@ -213,6 +213,7 @@ |
213 | import lpbContent from "../../../zrz/lpb/bjlp/lpbContent/index"; | 213 | import lpbContent from "../../../zrz/lpb/bjlp/lpbContent/index"; |
214 | import { getLpbMenuTree, batchScYcChange, getLpbTj,batchGeneratorBdcdyh,getLpbFwytAndQlxz ,batchCommit} from "@api/lpb"; | 214 | import { getLpbMenuTree, batchScYcChange, getLpbTj,batchGeneratorBdcdyh,getLpbFwytAndQlxz ,batchCommit} from "@api/lpb"; |
215 | import {getSearchList} from "@api/search"; | 215 | import {getSearchList} from "@api/search"; |
216 | import {getQjHDetailByBsm} from "@api/h"; | ||
216 | export default { | 217 | export default { |
217 | name:"", | 218 | name:"", |
218 | components:{lpbContent}, | 219 | components:{lpbContent}, |
... | @@ -227,7 +228,7 @@ export default { | ... | @@ -227,7 +228,7 @@ export default { |
227 | queryData:{ | 228 | queryData:{ |
228 | bdcdyh: "", | 229 | bdcdyh: "", |
229 | bdcqzh: "", | 230 | bdcqzh: "", |
230 | dylxs: ['zrz'], | 231 | dylxs: ['zrz','h'], |
231 | qlrmc: "", | 232 | qlrmc: "", |
232 | qszt: [], | 233 | qszt: [], |
233 | xmmc: "", | 234 | xmmc: "", |
... | @@ -349,8 +350,16 @@ export default { | ... | @@ -349,8 +350,16 @@ export default { |
349 | }, | 350 | }, |
350 | //办理 | 351 | //办理 |
351 | handleClick(row){ | 352 | handleClick(row){ |
352 | this.isSearch = false; | 353 | if(row.dylx === 'zrz'){ |
353 | this.zrzbsm = row.glbsm; | 354 | this.isSearch = false; |
355 | this.zrzbsm = row.glbsm; | ||
356 | }else { | ||
357 | getQjHDetailByBsm(row.glbsm).then((res)=>{ | ||
358 | this.isSearch = false; | ||
359 | this.zrzbsm = res.result.zrzbsm; | ||
360 | }) | ||
361 | } | ||
362 | |||
354 | }, | 363 | }, |
355 | //分页 | 364 | //分页 |
356 | handleCurrentChange(val) { | 365 | handleCurrentChange(val) { | ... | ... |
-
Please register or sign in to post a comment