style:业务流程框架
Showing
5 changed files
with
18 additions
and
40 deletions
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-15 16:55:37 | 4 | * @LastEditTime: 2023-09-18 11:30:35 |
5 | */ | 5 | */ |
6 | import Router from '@/router' | 6 | import Router from '@/router' |
7 | export default { | 7 | export default { |
... | @@ -24,15 +24,13 @@ export default { | ... | @@ -24,15 +24,13 @@ export default { |
24 | * @author: renchao | 24 | * @author: renchao |
25 | */ | 25 | */ |
26 | jump (data, type) { | 26 | jump (data, type) { |
27 | // const { href } = Router.resolve( | 27 | const { href } = Router.resolve( |
28 | // "/workFrame?bsmSlsq=" + | 28 | "/workFrame?bsmSlsq=" + |
29 | // data.bsmSlsq + | 29 | data.bsmSlsq + |
30 | // "&bestepid=" + | 30 | "&bestepid=" + |
31 | // data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type+"&zbhj=受理" | 31 | data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type + "&zbhj=受理" |
32 | // ); | 32 | ); |
33 | // window.open(href, "_blank"); | 33 | window.open(href, "_blank") |
34 | const { href } = Router.resolve('/workFrame?ywh=' + data.ywh + '&zbhj=受理') | ||
35 | window.open(href, "_blank") | ||
36 | this.$popupCacel() | 34 | this.$popupCacel() |
37 | }, | 35 | }, |
38 | /** | 36 | /** | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-18 11:18:59 | 4 | * @LastEditTime: 2023-09-18 11:25:30 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -178,10 +178,6 @@ | ... | @@ -178,10 +178,6 @@ |
178 | openDialog (scroll) { | 178 | openDialog (scroll) { |
179 | this.$popupDialog('登记簿详情', 'registerBook/djbFrame', scroll, '85%'); | 179 | this.$popupDialog('登记簿详情', 'registerBook/djbFrame', scroll, '85%'); |
180 | }, | 180 | }, |
181 | openYwDialog (item) { | ||
182 | const { href } = this.$router.resolve('/workFrameView?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + item.bsmBusiness + '&viewtype=3' + '&type=jdcx') | ||
183 | window.open(href, `urlname${item.bsmSlsq}`) | ||
184 | }, | ||
185 | /** | 181 | /** |
186 | * @description: handleLpbClick | 182 | * @description: handleLpbClick |
187 | * @param {*} item | 183 | * @param {*} item | ... | ... |
... | @@ -65,14 +65,8 @@ class data extends filter { | ... | @@ -65,14 +65,8 @@ class data extends filter { |
65 | }, | 65 | }, |
66 | { | 66 | { |
67 | label: "业务号", | 67 | label: "业务号", |
68 | prop: "ywh", | ||
68 | minWidth: '100', | 69 | minWidth: '100', |
69 | render: (h, scope) => { | ||
70 | return ( | ||
71 | <div> | ||
72 | <el-link type="primary" onClick={() => { vm.openYwDialog(scope.row) }}>{scope.row.ywh}</el-link> | ||
73 | </div> | ||
74 | ) | ||
75 | } | ||
76 | }, | 70 | }, |
77 | { | 71 | { |
78 | prop: "qllxmc", | 72 | prop: "qllxmc", | ... | ... |
... | @@ -29,7 +29,7 @@ class data extends filter { | ... | @@ -29,7 +29,7 @@ class data extends filter { |
29 | return ( | 29 | return ( |
30 | <div> | 30 | <div> |
31 | { | 31 | { |
32 | scope.row.zszt=='1' ? | 32 | scope.row.zszt == '1' ? |
33 | <div class='allow'>有效</div> : | 33 | <div class='allow'>有效</div> : |
34 | <div class='prohibit'>失效</div> | 34 | <div class='prohibit'>失效</div> |
35 | } | 35 | } |
... | @@ -59,7 +59,7 @@ class data extends filter { | ... | @@ -59,7 +59,7 @@ class data extends filter { |
59 | return ( | 59 | return ( |
60 | <div> | 60 | <div> |
61 | { | 61 | { |
62 | scope.row.bdcqzlx=='1' ? | 62 | scope.row.bdcqzlx == '1' ? |
63 | <div>不动产权证书</div> : | 63 | <div>不动产权证书</div> : |
64 | <div>不动产登记证明</div> | 64 | <div>不动产登记证明</div> |
65 | } | 65 | } |
... | @@ -67,23 +67,13 @@ class data extends filter { | ... | @@ -67,23 +67,13 @@ class data extends filter { |
67 | ) | 67 | ) |
68 | } | 68 | } |
69 | }, | 69 | }, |
70 | // { | ||
71 | // prop: "lzrxm", | ||
72 | // label: "领取人", | ||
73 | // width: '100' | ||
74 | // }, | ||
75 | // { | ||
76 | // prop: "fzsj", | ||
77 | // label: "领取时间", | ||
78 | // width: '140' | ||
79 | // }, | ||
80 | { | 70 | { |
81 | label: "业务号", | 71 | label: "业务号", |
82 | minWidth: '100', | 72 | minWidth: '100', |
83 | render: (h, scope) => { | 73 | render: (h, scope) => { |
84 | return ( | 74 | return ( |
85 | <div> | 75 | <div> |
86 | <el-link type="primary" onClick={() => { vm.openWorkDialog(scope.row) }}>{scope.row.ywh}</el-link> | 76 | <el-link type="primary" onClick={() => { vm.openYwDialog(scope.row) }}>{scope.row.ywh}</el-link> |
87 | </div> | 77 | </div> |
88 | ) | 78 | ) |
89 | } | 79 | } |
... | @@ -96,7 +86,7 @@ class data extends filter { | ... | @@ -96,7 +86,7 @@ class data extends filter { |
96 | prop: "ysxlh", | 86 | prop: "ysxlh", |
97 | label: "印刷序列号", | 87 | label: "印刷序列号", |
98 | width: '100' | 88 | width: '100' |
99 | }, | 89 | }, |
100 | { | 90 | { |
101 | prop: "bdcqzh", | 91 | prop: "bdcqzh", |
102 | label: "不动产权证号", | 92 | label: "不动产权证号", | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-15 14:52:20 | 4 | * @LastEditTime: 2023-09-18 11:22:10 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -115,9 +115,9 @@ | ... | @@ -115,9 +115,9 @@ |
115 | * @param {*} item | 115 | * @param {*} item |
116 | * @author: renchao | 116 | * @author: renchao |
117 | */ | 117 | */ |
118 | openWorkDialog (item) { | 118 | openYwDialog (item) { |
119 | const { href } = this.$router.resolve('/workFrameView?ywh=' + item.ywh + '&type=jdcx') | 119 | const { href } = this.$router.resolve('/workFrameView?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + item.bsmBusiness + '&viewtype=3' + '&type=jdcx') |
120 | window.open(href, `urlname${item.ywh}`) | 120 | window.open(href, `urlname${item.bsmSlsq}`) |
121 | } | 121 | } |
122 | } | 122 | } |
123 | } | 123 | } | ... | ... |
-
Please register or sign in to post a comment