diff --git a/App.vue b/App.vue index ce3ed2f..033d8e8 100644 --- a/App.vue +++ b/App.vue @@ -15,15 +15,15 @@ snNo: '', // 设备sn号 platformType: '', //区分平台 //正式 - // url: 'https://hsg.dctpay.com/user', - // graurl: 'https://pay.dctpay.com/crest', - // imgUrl: 'https://pay.dctpay.com/filesystem/', - // imageWxImg: 'https://hsgcs.dctpay.com/filesystem/wxApplets/', - //测试 - url: 'https://hsgcs.dctpay.com/user', - graurl:'https://gratia-pay.dctpay.com/crest', - imgUrl: 'https://hsgcs.dctpay.com/filesystem/', + url: 'https://hsg.dctpay.com/user', + graurl: 'https://pay.dctpay.com/crest', + imgUrl: 'https://pay.dctpay.com/filesystem/', imageWxImg: 'https://hsgcs.dctpay.com/filesystem/wxApplets/', + //测试 + // url: 'https://hsgcs.dctpay.com/user', + // graurl:'https://gratia-pay.dctpay.com/crest', + // imgUrl: 'https://hsgcs.dctpay.com/filesystem/', + // imageWxImg: 'https://hsgcs.dctpay.com/filesystem/wxApplets/', }, onLaunch: function() { diff --git a/Utils/Api.js b/Utils/Api.js index 16eaa91..00d4372 100644 --- a/Utils/Api.js +++ b/Utils/Api.js @@ -65,6 +65,6 @@ export const queryUserDiscountList = params => { } // 获取拉卡拉银联用户id -export const getLkLUnionUserId = params => { - return POST('POST', `${grabase}/tradeOrder/getLkLUnionUserId`, params).then(res => res.data); +export const getUnionUserId = params => { + return POST('POST', `${grabase}/tradeOrder/getUnionUserId`, params).then(res => res.data); } diff --git a/pages/welcome/welcome.vue b/pages/welcome/welcome.vue index 1f49b97..ba5feab 100644 --- a/pages/welcome/welcome.vue +++ b/pages/welcome/welcome.vue @@ -7,7 +7,7 @@ import { getH5AccessToken, getAlipayUserId, - getLkLUnionUserId + getUnionUserId } from '../../Utils/Api.js'; let app = getApp(); export default { @@ -69,7 +69,7 @@ import { this.getAlipayUserId(); } if (app.globalData.code && app.globalData.platformType == 'UQRCODEPAY') { - this.getLkLUnionUserId(); + this.getUnionUserId(); } } else { var arr1 = window.location.href; @@ -129,13 +129,13 @@ import { }); }, //云闪付获取openid - getLkLUnionUserId() { + getUnionUserId() { let params = { "serialNumber": app.globalData.snNo, "userAuthCode": app.globalData.code, "appUpIdentifier": this.appUpIdentifier } - getLkLUnionUserId(params).then(res => { + getUnionUserId(params).then(res => { if (res.return_code == '000000' && res.return_data.respData.userId) { app.globalData.openId = res.return_data.respData.userId; uni.setStorage({ @@ -154,15 +154,15 @@ import { jumpWeb() { if (app.globalData.platformType == 'WECHAT') { 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') { 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') { 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'; } }, }