|
|
|
<template>
|
|
|
|
<view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {
|
|
|
|
getH5AccessToken,
|
|
|
|
getAlipayUserId,
|
|
|
|
getUnionUserId
|
|
|
|
} from '../../Utils/Api.js';
|
|
|
|
let app = getApp();
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
appUpIdentifier: ''
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onLoad(options) {
|
|
|
|
//银联
|
|
|
|
if (app.globalData.platformType == 'UQRCODEPAY') {
|
|
|
|
var useragent = navigator.userAgent;
|
|
|
|
var agentname = useragent.split('UnionPay/');
|
|
|
|
var agentno = agentname[1];
|
|
|
|
var agentnoname = agentno.split(')');
|
|
|
|
var lastangetname = agentnoname[0];
|
|
|
|
this.appUpIdentifier = 'UnionPay/' + lastangetname;
|
|
|
|
}
|
|
|
|
var arr1 = window.location.href;
|
|
|
|
var arr2 = arr1.split('=');
|
|
|
|
if (app.globalData.platformType == 'WECHAT' || app.globalData.platformType == 'ALIPAY' || app.globalData
|
|
|
|
.platformType == 'UQRCODEPAY') {
|
|
|
|
if (arr2[1].length == 12) {
|
|
|
|
var arr3 = arr2[1].split('#/');
|
|
|
|
app.globalData.snNo = arr3[0];
|
|
|
|
uni.setStorage({
|
|
|
|
key: "snNumber",
|
|
|
|
data: arr3[0]
|
|
|
|
})
|
|
|
|
this.jumpWeb();
|
|
|
|
} else {
|
|
|
|
let that = this;
|
|
|
|
var arr4;
|
|
|
|
if (app.globalData.platformType == 'UQRCODEPAY') {
|
|
|
|
arr4 = arr2[1].split('&');
|
|
|
|
app.globalData.code = arr4[0];
|
|
|
|
uni.getStorage({
|
|
|
|
key: 'snNumber',
|
|
|
|
success(e) {
|
|
|
|
app.globalData.snNo = e.data;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
arr4 = arr2[2].split('&');
|
|
|
|
app.globalData.code = arr4[0];
|
|
|
|
uni.getStorage({
|
|
|
|
key: 'snNumber',
|
|
|
|
success(e) {
|
|
|
|
app.globalData.snNo = e.data;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (app.globalData.code && app.globalData.platformType == 'WECHAT') {
|
|
|
|
this.getH5AccessToken();
|
|
|
|
}
|
|
|
|
if (app.globalData.code && app.globalData.platformType == 'ALIPAY') {
|
|
|
|
this.getAlipayUserId();
|
|
|
|
}
|
|
|
|
if (app.globalData.code && app.globalData.platformType == 'UQRCODEPAY') {
|
|
|
|
this.getUnionUserId();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
var arr1 = window.location.href;
|
|
|
|
var arr2 = arr1.split('=');
|
|
|
|
var arr3 = arr2[1].split('#/');
|
|
|
|
app.globalData.snNo = arr3[0];
|
|
|
|
uni.setStorage({
|
|
|
|
key: "snNumber",
|
|
|
|
data: arr3[0]
|
|
|
|
})
|
|
|
|
uni.reLaunch({
|
|
|
|
url: '../index/index'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
//H5 微信获取openId
|
|
|
|
getH5AccessToken() {
|
|
|
|
let params = {
|
|
|
|
code: app.globalData.code
|
|
|
|
}
|
|
|
|
getH5AccessToken(params).then(res => {
|
|
|
|
if (res.return_code == '000000' && res.return_data.openid) {
|
|
|
|
app.globalData.openId = res.return_data.openid;
|
|
|
|
uni.setStorageSync("openId",res.return_data.openid)
|
|
|
|
/* uni.setStorage({
|
|
|
|
key: "openId",
|
|
|
|
data: res.return_data.openid
|
|
|
|
}) */
|
|
|
|
uni.reLaunch({
|
|
|
|
url: '../index/index'
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.jumpWeb();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
//支付宝获取openid
|
|
|
|
getAlipayUserId() {
|
|
|
|
let params = {
|
|
|
|
code: app.globalData.code
|
|
|
|
}
|
|
|
|
getAlipayUserId(params).then(res => {
|
|
|
|
if (res.return_code == '000000' && res.return_data.userId) {
|
|
|
|
app.globalData.openId = res.return_data.userId;
|
|
|
|
uni.setStorageSync("openId",res.return_data.userId)
|
|
|
|
/* uni.setStorage({
|
|
|
|
key: "openId",
|
|
|
|
data: res.return_data.userId
|
|
|
|
}) */
|
|
|
|
uni.reLaunch({
|
|
|
|
url: '../index/index'
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.jumpWeb();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
//云闪付获取openid
|
|
|
|
getUnionUserId() {
|
|
|
|
let params = {
|
|
|
|
"serialNumber": app.globalData.snNo,
|
|
|
|
"userAuthCode": app.globalData.code,
|
|
|
|
"appUpIdentifier": this.appUpIdentifier
|
|
|
|
}
|
|
|
|
getUnionUserId(params).then(res => {
|
|
|
|
if (res.return_code == '000000' && res.return_data.respData.userId) {
|
|
|
|
app.globalData.openId = res.return_data.respData.userId;
|
|
|
|
uni.setStorageSync("openId",res.return_data.respData.userId);
|
|
|
|
/* uni.setStorage({
|
|
|
|
key: "openId",
|
|
|
|
data: res.return_data.respData.userId
|
|
|
|
}) */
|
|
|
|
uni.reLaunch({
|
|
|
|
url: '../index/index'
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.jumpWeb();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
//重定向方法
|
|
|
|
jumpWeb() {
|
|
|
|
let redirectUrl = app.globalData.redirectUrl;
|
|
|
|
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='+redirectUrl+'&response_type=code&scope=snsapi_base#wechat_redirect';
|
|
|
|
}
|
|
|
|
if (app.globalData.platformType == 'ALIPAY') {
|
|
|
|
let str =encodeURIComponent(redirectUrl+"?sn=1000017476")
|
|
|
|
location.href =
|
|
|
|
'https://openauth.alipay.com/oauth2/publicAppAuthorize.htm?app_id=2021003176605875&scope=auth_base&redirect_uri=https://pay.dctpay.com/redirect?redirect_uri='+str;
|
|
|
|
}
|
|
|
|
if (app.globalData.platformType == 'UQRCODEPAY') {
|
|
|
|
location.href =
|
|
|
|
'https://qr.95516.com/qrcGtwWeb-web/api/userAuth?version=1.0.0&redirectUrl='+redirectUrl;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
</style>
|