apply-clients 4.1.50-weinan → 4.1.51-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
|
@@ -317,10 +317,29 @@ export default {
|
|
|
317
317
|
}).then(res=>{
|
|
318
318
|
console.log(res.data)
|
|
319
319
|
if (res.data.code == '200'){
|
|
320
|
-
this
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
320
|
+
if (this.charge.f_payment_method == '现金缴费'){
|
|
321
|
+
let data1 = {
|
|
322
|
+
tablename: 't_userinfo',
|
|
323
|
+
condition: `f_userinfo_id = '${this.selectdata.f_userinfo_id}'`
|
|
324
|
+
}
|
|
325
|
+
http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/singleTable`, {data: data1}, {resolveMsg: null, rejectMsg: '获取数据失败'}).then(res1=>{
|
|
326
|
+
debugger
|
|
327
|
+
this.$showMessage( `确认对${res1.data[0].f_user_name}进行现金收费?`,['confirm', 'cancel']).then((res)=>{
|
|
328
|
+
if (res=='confirm'){
|
|
329
|
+
this.$showMessage('缴费成功!')
|
|
330
|
+
this.saveother()
|
|
331
|
+
this.showCharge=false
|
|
332
|
+
return
|
|
333
|
+
}
|
|
334
|
+
})
|
|
335
|
+
})
|
|
336
|
+
}else {
|
|
337
|
+
debugger
|
|
338
|
+
this.$showMessage('缴费成功!')
|
|
339
|
+
this.saveother()
|
|
340
|
+
this.showCharge=false
|
|
341
|
+
return
|
|
342
|
+
}
|
|
324
343
|
}else {
|
|
325
344
|
this.$showMessage('缴费失败')
|
|
326
345
|
this.showCharge=false
|
|
@@ -536,7 +555,6 @@ export default {
|
|
|
536
555
|
rejectMsg: null
|
|
537
556
|
})
|
|
538
557
|
if (res.data[0].f_user_id===null){
|
|
539
|
-
debugger
|
|
540
558
|
this.$showMessage("请先添加表具信息!!!")
|
|
541
559
|
return
|
|
542
560
|
}
|