|
@@ -971,14 +971,13 @@ export const weixinPay = function (data, successful, cancel, failure) {
|
|
|
|
|
|
// 微信授权验证配置
|
|
|
export const wxConfig = function (configInfo, userInfo, cb) {
|
|
|
- let url = process.env.VUE_APP_HREF
|
|
|
+ let url = ''
|
|
|
const systemInfo = uni.getSystemInfoSync()
|
|
|
- if (systemInfo.platform === 'android') {
|
|
|
- // 安卓平台
|
|
|
- url = window.location.href.split('#')[0] //获取到的url是当前页面的域名
|
|
|
- } else if (systemInfo.platform === 'ios') {
|
|
|
+ if (systemInfo.platform === 'ios') {
|
|
|
// iOS平台
|
|
|
url = getStorage('realAuthUrl')
|
|
|
+ } else {
|
|
|
+ url = window.location.href.split('#')[0] //获取到的url是当前页面的域名
|
|
|
}
|
|
|
api
|
|
|
.post('/user/jsapi/sign', {
|