|
|
@ -7,7 +7,7 @@ |
|
|
|
import { |
|
|
|
import { |
|
|
|
getH5AccessToken, |
|
|
|
getH5AccessToken, |
|
|
|
getAlipayUserId, |
|
|
|
getAlipayUserId, |
|
|
|
getLkLUnionUserId |
|
|
|
getUnionUserId |
|
|
|
} from '../../Utils/Api.js'; |
|
|
|
} from '../../Utils/Api.js'; |
|
|
|
let app = getApp(); |
|
|
|
let app = getApp(); |
|
|
|
export default { |
|
|
|
export default { |
|
|
@ -69,7 +69,7 @@ import { |
|
|
|
this.getAlipayUserId(); |
|
|
|
this.getAlipayUserId(); |
|
|
|
} |
|
|
|
} |
|
|
|
if (app.globalData.code && app.globalData.platformType == 'UQRCODEPAY') { |
|
|
|
if (app.globalData.code && app.globalData.platformType == 'UQRCODEPAY') { |
|
|
|
this.getLkLUnionUserId(); |
|
|
|
this.getUnionUserId(); |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
var arr1 = window.location.href; |
|
|
|
var arr1 = window.location.href; |
|
|
@ -129,13 +129,13 @@ import { |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
//云闪付获取openid |
|
|
|
//云闪付获取openid |
|
|
|
getLkLUnionUserId() { |
|
|
|
getUnionUserId() { |
|
|
|
let params = { |
|
|
|
let params = { |
|
|
|
"serialNumber": app.globalData.snNo, |
|
|
|
"serialNumber": app.globalData.snNo, |
|
|
|
"userAuthCode": app.globalData.code, |
|
|
|
"userAuthCode": app.globalData.code, |
|
|
|
"appUpIdentifier": this.appUpIdentifier |
|
|
|
"appUpIdentifier": this.appUpIdentifier |
|
|
|
} |
|
|
|
} |
|
|
|
getLkLUnionUserId(params).then(res => { |
|
|
|
getUnionUserId(params).then(res => { |
|
|
|
if (res.return_code == '000000' && res.return_data.respData.userId) { |
|
|
|
if (res.return_code == '000000' && res.return_data.respData.userId) { |
|
|
|
app.globalData.openId = res.return_data.respData.userId; |
|
|
|
app.globalData.openId = res.return_data.respData.userId; |
|
|
|
uni.setStorage({ |
|
|
|
uni.setStorage({ |
|
|
@ -154,15 +154,15 @@ import { |
|
|
|
jumpWeb() { |
|
|
|
jumpWeb() { |
|
|
|
if (app.globalData.platformType == 'WECHAT') { |
|
|
|
if (app.globalData.platformType == 'WECHAT') { |
|
|
|
location.href = |
|
|
|
location.href = |
|
|
|
'https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxa075e8509802f826&redirect_uri=https://hsg.dctpay.com/wechat_authorize/?redirect_uri=https://gratia-pay.dctpay.com/scanPay&response_type=code&scope=snsapi_base#wechat_redirect'; |
|
|
|
'https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxa075e8509802f826&redirect_uri=https://hsg.dctpay.com/wechat_authorize/?redirect_uri=https://pay.dctpay.com/scanPay&response_type=code&scope=snsapi_base#wechat_redirect'; |
|
|
|
} |
|
|
|
} |
|
|
|
if (app.globalData.platformType == 'ALIPAY') { |
|
|
|
if (app.globalData.platformType == 'ALIPAY') { |
|
|
|
location.href = |
|
|
|
location.href = |
|
|
|
'https://openauth.alipay.com/oauth2/publicAppAuthorize.htm?app_id=2021003176605875&scope=auth_base&redirect_uri=https://pay.dctpay.com/redirect?redirect_uri=https%3A%2F%2Fgratia-pay.dctpay.com%2FscanPay%3Fsn%3D1000017476'; |
|
|
|
'https://openauth.alipay.com/oauth2/publicAppAuthorize.htm?app_id=2021003176605875&scope=auth_base&redirect_uri=https://pay.dctpay.com/redirect?redirect_uri=https%3A%2F%2Fpay.dctpay.com%2FscanPay%3Fsn%3D1000017476'; |
|
|
|
} |
|
|
|
} |
|
|
|
if (app.globalData.platformType == 'UQRCODEPAY') { |
|
|
|
if (app.globalData.platformType == 'UQRCODEPAY') { |
|
|
|
location.href = |
|
|
|
location.href = |
|
|
|
'https://qr.95516.com/qrcGtwWeb-web/api/userAuth?version=1.0.0&redirectUrl=https://pgratia-pay.dctpay.com'; |
|
|
|
'https://qr.95516.com/qrcGtwWeb-web/api/userAuth?version=1.0.0&redirectUrl=https://pay.dctpay.com/scanPay'; |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
|