style:办事指南
Showing
3 changed files
with
32 additions
and
3 deletions
... | @@ -64,6 +64,7 @@ $(document).on("click", ".area_list li", function (e) { | ... | @@ -64,6 +64,7 @@ $(document).on("click", ".area_list li", function (e) { |
64 | // 办事指南在线办理 | 64 | // 办事指南在线办理 |
65 | $(document).on("click", ".onlineProcessing", function () { | 65 | $(document).on("click", ".onlineProcessing", function () { |
66 | console.log($(this).attr('data-id')) | 66 | console.log($(this).attr('data-id')) |
67 | _listBusinessIdsByBsznId($(this).attr('data-id')) | ||
67 | }) | 68 | }) |
68 | 69 | ||
69 | layui.use(['form', 'common'], function () { | 70 | layui.use(['form', 'common'], function () { |
... | @@ -118,7 +119,6 @@ function _getGuideBusinessInWssq(id) { | ... | @@ -118,7 +119,6 @@ function _getGuideBusinessInWssq(id) { |
118 | success: function (result) {//返回数据根据结果进行相应的处理 | 119 | success: function (result) {//返回数据根据结果进行相应的处理 |
119 | if (result.code == 200 && result.data != null) { | 120 | if (result.code == 200 && result.data != null) { |
120 | data.list = result.data | 121 | data.list = result.data |
121 | |||
122 | layui.use('laytpl', function () { | 122 | layui.use('laytpl', function () { |
123 | laytpl = layui.laytpl; | 123 | laytpl = layui.laytpl; |
124 | var getTpl = document.getElementById('businessGuide').innerHTML | 124 | var getTpl = document.getElementById('businessGuide').innerHTML |
... | @@ -172,7 +172,7 @@ function _getGuideBusinessInReserve(id) { | ... | @@ -172,7 +172,7 @@ function _getGuideBusinessInReserve(id) { |
172 | } | 172 | } |
173 | // GET /portal/MhGuide/listBusinessIdsByBsznId 通过办事指南ID获取对应的业务ID列表 | 173 | // GET /portal/MhGuide/listBusinessIdsByBsznId 通过办事指南ID获取对应的业务ID列表 |
174 | 174 | ||
175 | function _getGuideBusinessInReserve(id) { | 175 | function _listBusinessIdsByBsznId(id) { |
176 | $.ajax({ | 176 | $.ajax({ |
177 | type: "get", //提交方式 | 177 | type: "get", //提交方式 |
178 | url: portal.api_url + "/portal/MhGuide/listBusinessIdsByBsznId?bsznId="+id,//路径 | 178 | url: portal.api_url + "/portal/MhGuide/listBusinessIdsByBsznId?bsznId="+id,//路径 |
... | @@ -180,10 +180,38 @@ function _getGuideBusinessInReserve(id) { | ... | @@ -180,10 +180,38 @@ function _getGuideBusinessInReserve(id) { |
180 | //数据,这里使用的是Json格式进行传输 | 180 | //数据,这里使用的是Json格式进行传输 |
181 | success: function (result) {//返回数据根据结果进行相应的处理 | 181 | success: function (result) {//返回数据根据结果进行相应的处理 |
182 | if (result.code == 200 && result.data != null) { | 182 | if (result.code == 200 && result.data != null) { |
183 | if(result.data.length==1) { | ||
184 | _getFQFBusinessFlow(result.data[0]) | ||
185 | }else { | ||
186 | window.open('./wssq.html', "_self") | ||
187 | } | ||
183 | } | 188 | } |
184 | } | 189 | } |
185 | }); | 190 | }); |
186 | } | 191 | } |
192 | |||
193 | // /portal/ApplyBusinessService/getFQFBusinessFlow获取发起方业务流程信息 | ||
194 | function _getFQFBusinessFlow(id) { | ||
195 | $.ajax({ | ||
196 | type: "post", //提交方式 | ||
197 | url: portal.api_url + "/portal/ApplyBusinessService/getFQFBusinessFlow",//路径 | ||
198 | dataType: "json", | ||
199 | data: { | ||
200 | 'ywid':id | ||
201 | }, | ||
202 | //数据,这里使用的是Json格式进行传输 | ||
203 | success: function (result) {//返回数据根据结果进行相应的处理 | ||
204 | if (result.code == 200 && result.data != null) { | ||
205 | console.log(result.data) | ||
206 | // getInitiateFLow($(this).attr("ywid"),$(this).attr("businessNo")); | ||
207 | getInitiateFLow(id,result.data.businessNo); | ||
208 | } | ||
209 | } | ||
210 | }); | ||
211 | } | ||
212 | |||
213 | |||
214 | |||
187 | var data = { //数据 | 215 | var data = { //数据 |
188 | "list": [], | 216 | "list": [], |
189 | "onlineList": [] | 217 | "onlineList": [] | ... | ... |
... | @@ -13,7 +13,7 @@ function _initData() { | ... | @@ -13,7 +13,7 @@ function _initData() { |
13 | type: "get", //提交方式 | 13 | type: "get", //提交方式 |
14 | url: portal.api_url + "/portal/MhGuide/getBsznDetailById",//路径 | 14 | url: portal.api_url + "/portal/MhGuide/getBsznDetailById",//路径 |
15 | data: { | 15 | data: { |
16 | "id": GetQueryString('id'), | 16 | "bsznId": GetQueryString('id'), |
17 | }, | 17 | }, |
18 | dataType: "json", | 18 | dataType: "json", |
19 | //数据,这里使用的是Json格式进行传输 | 19 | //数据,这里使用的是Json格式进行传输 | ... | ... |
... | @@ -73,6 +73,7 @@ | ... | @@ -73,6 +73,7 @@ |
73 | <script type="text/javascript" src="../staticJs/down.js"></script> | 73 | <script type="text/javascript" src="../staticJs/down.js"></script> |
74 | <script type="text/javascript" src="../staticJs/common.js"></script> | 74 | <script type="text/javascript" src="../staticJs/common.js"></script> |
75 | <script type="text/javascript" src="../staticJs/city-picker.js"></script> | 75 | <script type="text/javascript" src="../staticJs/city-picker.js"></script> |
76 | <script type="text/javascript" src="../../staticJs/onlineApply/workFlow.js"></script> | ||
76 | <script type="text/javascript" src="../staticJs/bszn.js"></script> | 77 | <script type="text/javascript" src="../staticJs/bszn.js"></script> |
77 | <!-- 网上申请 --> | 78 | <!-- 网上申请 --> |
78 | <script id="businessGuide" type="text/html"> | 79 | <script id="businessGuide" type="text/html"> | ... | ... |
-
Please register or sign in to post a comment