style:证书信息查询跳转
Showing
2 changed files
with
25 additions
and
27 deletions
| ... | @@ -69,15 +69,14 @@ class data extends filter { | ... | @@ -69,15 +69,14 @@ class data extends filter { |
| 69 | }, | 69 | }, |
| 70 | { | 70 | { |
| 71 | label: "业务号", | 71 | label: "业务号", |
| 72 | prop: "ywh", | ||
| 73 | width: '100', | 72 | width: '100', |
| 74 | // render: (h, scope) => { | 73 | render: (h, scope) => { |
| 75 | // return ( | 74 | return ( |
| 76 | // <div> | 75 | <div> |
| 77 | // <el-link type="primary" onClick={() => { vm.openYwDialog(scope.row) }}>{scope.row.ywh}</el-link> | 76 | <el-link type="primary" onClick={() => { vm.openYwDialog(scope.row) }}>{scope.row.ywh}</el-link> |
| 78 | // </div> | 77 | </div> |
| 79 | // ) | 78 | ) |
| 80 | // } | 79 | } |
| 81 | }, | 80 | }, |
| 82 | { | 81 | { |
| 83 | label: "权利类型", | 82 | label: "权利类型", | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-27 16:11:47 | 4 | * @LastEditTime: 2023-10-30 09:15:01 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -55,7 +55,7 @@ | ... | @@ -55,7 +55,7 @@ |
| 55 | import table from "@/utils/mixin/table"; | 55 | import table from "@/utils/mixin/table"; |
| 56 | import { datas, sendThis } from "./zslqcx"; | 56 | import { datas, sendThis } from "./zslqcx"; |
| 57 | import { getBdcqzReceiveList } from "@/api/search.js" | 57 | import { getBdcqzReceiveList } from "@/api/search.js" |
| 58 | import { bdcqzPreview } from "@/api/bdcqz.js" | 58 | import { getXtParamsByYwh, getBlParamsByYwh } from '@/api/djyw' |
| 59 | export default { | 59 | export default { |
| 60 | name: "zslqcx", | 60 | name: "zslqcx", |
| 61 | mixins: [table], | 61 | mixins: [table], |
| ... | @@ -114,23 +114,22 @@ | ... | @@ -114,23 +114,22 @@ |
| 114 | * @author: renchao | 114 | * @author: renchao |
| 115 | */ | 115 | */ |
| 116 | openYwDialog (item) { | 116 | openYwDialog (item) { |
| 117 | if (item.sjlx == "3") { | 117 | getXtParamsByYwh(item.ywh).then(res => { |
| 118 | item.djywbm = "DJBBL"; | 118 | let data = res.result |
| 119 | const { href } = this.$router.resolve( | 119 | if (item.sjlx == "3") { |
| 120 | "/djbworkFrameview?bsmSlsq=" + | 120 | item.djywbm = "DJBBL"; |
| 121 | item.bsmSlsq + "&bsmBusiness=" + | 121 | const { href } = this.$router.resolve( |
| 122 | item.bsmBusiness + "&djywbm=" + | 122 | "/djbworkFrameview?bsmSlsq=" + |
| 123 | item.djywbm | 123 | data.bsmSlsq + "&bsmBusiness=" + |
| 124 | ); | 124 | data.bsmBusiness + "&djywbm=" + |
| 125 | window.open(href, `djbworkFrameview${item.bsmSlsq}`); | 125 | item.djywbm |
| 126 | } else { | 126 | ); |
| 127 | const { href } = this.$router.resolve( | 127 | window.open(href, `djbworkFrameview${item.bsmSlsq}`); |
| 128 | "/workFrameView?bsmSlsq=" + | 128 | } else { |
| 129 | item.bsmSlsq + "&bsmBusiness=" + | 129 | const { href } = this.$router.resolve('/workFrameView?bsmSlsq=' + data.bsmSlsq + '&bsmBusiness=' + data.bsmBusiness) |
| 130 | item.bsmBusiness | 130 | window.open(href, `urlname${new Date().getTime()}`) |
| 131 | ); | 131 | } |
| 132 | window.open(href, `workFrameView${item.bsmSlsq}`) | 132 | }) |
| 133 | } | ||
| 134 | } | 133 | } |
| 135 | } | 134 | } |
| 136 | } | 135 | } | ... | ... |
-
Please register or sign in to post a comment