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