apply-clients 4.1.52-weinan → 4.1.54-weinan
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -311,28 +311,27 @@ export default {
|
|
|
311
311
|
user: Vue.user,
|
|
312
312
|
f_out_trade_no:""
|
|
313
313
|
}
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
}
|
|
333
|
-
})
|
|
314
|
+
let data1 = {
|
|
315
|
+
tablename: 't_userinfo',
|
|
316
|
+
condition: `f_userinfo_id = '${this.selectdata.f_userinfo_id}'`
|
|
317
|
+
}
|
|
318
|
+
http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/singleTable`, {data: data1}, {resolveMsg: null, rejectMsg: '获取数据失败'}).then(res1=>{
|
|
319
|
+
this.$showMessage( `确认对${res1.data[0].f_user_name}进行${this.charge.f_payment_method}收费?`,['confirm', 'cancel']).then((res)=>{
|
|
320
|
+
if (res=='confirm'){
|
|
321
|
+
http.load('POST',`${this.$androidUtil.getProxyUrl()}/rs/logic/beforeAddChargeRecord`,{data:info},{
|
|
322
|
+
resolveMsg: null,
|
|
323
|
+
rejectMsg: null
|
|
324
|
+
}).then(res=>{
|
|
325
|
+
console.log(res.data)
|
|
326
|
+
if (res.data.code == '200') {
|
|
327
|
+
this.$showMessage('缴费成功!')
|
|
328
|
+
this.saveother()
|
|
329
|
+
this.search()
|
|
330
|
+
this.showCharge=false
|
|
331
|
+
}
|
|
334
332
|
})
|
|
335
|
-
|
|
333
|
+
}
|
|
334
|
+
})
|
|
336
335
|
})
|
|
337
336
|
return
|
|
338
337
|
}
|