Commit 2f9247833f4932756b132e9eb48d7417cb0091b8
1 parent
255542b3
提交登陆
Showing
1 changed file
with
7 additions
and
4 deletions
src/views/payback/index.vue
... | ... | @@ -227,19 +227,21 @@ |
227 | 227 | }, |
228 | 228 | toBackSubmit:function(){ |
229 | 229 | let selects = this.multipleSelection; |
230 | - if(selects == null || selects.length < 1){ | |
230 | + /*if(selects == null || selects.length < 1){ | |
231 | 231 | this.$message({ |
232 | 232 | message: '请至少选择一行数据!', |
233 | 233 | type: 'warning' |
234 | 234 | }); |
235 | 235 | return; |
236 | - } | |
236 | + }*/ | |
237 | 237 | let orders = []; |
238 | 238 | let orgIds = []; |
239 | - selects.forEach(item=>{ | |
239 | + /*selects.forEach(item=>{ | |
240 | 240 | orders.push({orderId:item.orderId,parkId:item.plNo,orderNotPayFee:item.arrearageFee}); |
241 | 241 | orgIds.push(item.orgId); |
242 | - }); | |
242 | + });*/ | |
243 | + orders.push({orderId:'101519114989403303936',parkId:'P320211005',orderNotPayFee:'72275'}); | |
244 | + orgIds.push('10005'); | |
243 | 245 | if(orders == null || orders.length < 1){ |
244 | 246 | this.$message({ |
245 | 247 | message: '请至少选择一行数据!', |
... | ... | @@ -252,6 +254,7 @@ |
252 | 254 | sysCode:'10003', |
253 | 255 | payType:2, |
254 | 256 | paySrcType:103, |
257 | + carNumber:'京A12333', | |
255 | 258 | terminalSource:9, |
256 | 259 | recordArreaInfos:JSON.stringify(orders) |
257 | 260 | }; | ... | ... |