229 lines
6.7 KiB
JavaScript
229 lines
6.7 KiB
JavaScript
import base from '@/config/baseUrl';
|
||
import store from '@/store';
|
||
import $http from '@/config/requestConfig';
|
||
|
||
/**
|
||
* APP内嵌网页 -- 安卓IOS交互
|
||
* 交互区分名称:shangChengView
|
||
* 示例:appMutual("方法名称", "传递的参数")
|
||
* 相当与安卓交互:window.shangChengView["方法名称"]("传递的参数");
|
||
*/
|
||
export const appMutual = (name, query = null, errCallback) => {
|
||
if (/android/i.test(navigator.userAgent)) {
|
||
if (window.shangChengView) {
|
||
if (typeof(query) == "object") {
|
||
query = JSON.stringify(query);
|
||
}
|
||
window.shangChengView[name](query);
|
||
} else {
|
||
errCallback && errCallback();
|
||
}
|
||
} else if (/ios|iphone|ipod|pad/i.test(navigator.userAgent)) {
|
||
if (window.webkit) {
|
||
window.webkit.messageHandlers[name].postMessage(query)
|
||
} else {
|
||
errCallback && errCallback();
|
||
}
|
||
}
|
||
};
|
||
/**
|
||
* 获取url中的参数
|
||
*/
|
||
export const getUrlData = () => {
|
||
var strs;
|
||
var url = window.location.href; //获取url中"?"符后的字串
|
||
var theRequest = new Object();
|
||
if (url.indexOf("?") != -1) {
|
||
url = url.substr(url.indexOf("?"));
|
||
var str = url.substr(1);
|
||
strs = str.split("&");
|
||
for (var i = 0; i < strs.length; i++) {
|
||
var index = strs[i].indexOf("=");
|
||
theRequest[strs[i].slice(0, index)] = unescape(strs[i].slice(index + 1, strs[i].length));
|
||
}
|
||
}
|
||
|
||
return theRequest;
|
||
}
|
||
//公众号微信支付
|
||
export const wxPublicPay = (payInfo, callback) => {
|
||
$http.get("api/pay/v1/pay_public_wx", {
|
||
orderNo: payInfo.orderNo
|
||
}).then(data => {
|
||
let wxConfigObj = {
|
||
appId: data.appId,
|
||
timeStamp: data.timeStamp,
|
||
nonceStr: data.nonceStr,
|
||
package: data.package,
|
||
signType: data.signType,
|
||
paySign: data.sign
|
||
};
|
||
function onBridgeReady() {
|
||
window.WeixinJSBridge.invoke("getBrandWCPayRequest", wxConfigObj, function(
|
||
res
|
||
) {
|
||
if (res.err_msg == "get_brand_wcpay_request:ok") {
|
||
callback && callback(res);
|
||
} else // 使用以上方式判断前端返回,微信团队郑重提示:res.err_msg将在用户支付成功后返回 ok,但并不保证它绝对可靠。
|
||
if (res.err_msg == "get_brand_wcpay_request:cancel") {
|
||
// common.loadWarn('支付遇到问题,您取消了支付');
|
||
} else
|
||
if (res.err_msg == "get_brand_wcpay_request:fail") {
|
||
// common.myConfirm('支付遇到问题,您可能需要重新登录', '', function () {
|
||
// obj.wxLoginOAuth();
|
||
// });
|
||
}
|
||
});
|
||
}
|
||
if (typeof window.WeixinJSBridge == "undefined") {
|
||
if (document.addEventListener) {
|
||
document.addEventListener("WeixinJSBridgeReady", onBridgeReady, false);
|
||
} else if (document.attachEvent) {
|
||
document.attachEvent("WeixinJSBridgeReady", onBridgeReady);
|
||
document.attachEvent("onWeixinJSBridgeReady", onBridgeReady);
|
||
}
|
||
} else {
|
||
onBridgeReady();
|
||
}
|
||
});
|
||
};
|
||
// 浏览器判断
|
||
export const getBrowser = () => {
|
||
let ua = navigator.userAgent.toLowerCase();
|
||
if (ua.match(/MicroMessenger/i) == "micromessenger") {
|
||
return "微信";
|
||
}
|
||
return "其他";
|
||
};
|
||
|
||
//公众号获取code
|
||
function getLogin(type) {
|
||
let urlNow = encodeURIComponent(window.location.href);
|
||
let url =
|
||
`https://open.weixin.qq.com/connect/oauth2/authorize?appid=${
|
||
base.publicAppId
|
||
}&redirect_uri=${urlNow}&response_type=code&scope=snsapi_userinfo&state=${type}#wechat_redirect`;
|
||
window.location.replace(url);
|
||
}
|
||
//判断是否登录,登录处理
|
||
let isGetOpenId = true;
|
||
function getRecommendCode() {
|
||
var url = window.location.href;
|
||
let codeIndex = url.indexOf("recommendCode=");
|
||
if (codeIndex >= 0) {
|
||
let recommendCode = url.substr(codeIndex + 14);
|
||
if (recommendCode.indexOf("&") >= 0) {
|
||
return recommendCode.substr(0, recommendCode.indexOf("&"));
|
||
} else if (recommendCode.indexOf("?") >= 0) {
|
||
return recommendCode.substr(0, recommendCode.indexOf("?"));
|
||
} else if (recommendCode.indexOf("/") >= 0) {
|
||
return recommendCode.substr(0, recommendCode.indexOf("/"));
|
||
} else if (recommendCode.indexOf("#") >= 0) {
|
||
return recommendCode.substr(0, recommendCode.indexOf("#"));
|
||
}
|
||
return recommendCode;
|
||
} else {
|
||
return;
|
||
}
|
||
}
|
||
function getRecommend() {
|
||
var url = window.location.href;
|
||
let codeIndex = url.indexOf("recommend=");
|
||
if (codeIndex >= 0) {
|
||
let recommend = url.substr(codeIndex + 10);
|
||
if (recommend.indexOf("&") >= 0) {
|
||
return recommend.substr(0, recommend.indexOf("&"));
|
||
} else if (recommend.indexOf("?") >= 0) {
|
||
return recommend.substr(0, recommend.indexOf("?"));
|
||
} else if (recommend.indexOf("/") >= 0) {
|
||
return recommend.substr(0, recommend.indexOf("/"));
|
||
} else if (recommend.indexOf("#") >= 0) {
|
||
return recommend.substr(0, recommend.indexOf("#"));
|
||
}
|
||
return recommend;
|
||
} else {
|
||
return;
|
||
}
|
||
}
|
||
export const h5Login = function(type = "judge", callback) {
|
||
var getRequest = getUrlData();
|
||
let recommendCode = getRecommendCode();
|
||
if (recommendCode && recommendCode !== "null" && recommendCode !== "undefined") {
|
||
uni.setStorageSync("recommendCode", recommendCode);
|
||
} else {
|
||
let recommend = getRecommend();
|
||
if(recommend && recommend !== "null" && recommend !== "undefined"){
|
||
uni.setStorageSync("recommendCode", recommend);
|
||
}
|
||
}
|
||
if (getBrowser() == "微信") {
|
||
if (getRequest.code) {
|
||
if(isGetOpenId){
|
||
isGetOpenId = false;
|
||
let httpData = {
|
||
code: getRequest.code
|
||
};
|
||
let recommendCode = uni.getStorageSync("recommendCode");
|
||
if(recommendCode){
|
||
httpData.recommendUid = recommendCode;
|
||
store.commit("setChatScenesInfo", {
|
||
recommendCode: recommendCode
|
||
});
|
||
uni.removeStorageSync("recommendCode");
|
||
}
|
||
$http.get("api/open/v2/get_public_login", httpData)
|
||
.then(result => {
|
||
store.commit('setUserInfo', result);
|
||
//publicShare();
|
||
callback && callback();
|
||
uni.showToast({
|
||
title: "欢迎回来",
|
||
icon: "none"
|
||
});
|
||
},() => {
|
||
isGetOpenId = true;
|
||
});
|
||
}
|
||
} else {
|
||
getLogin(type);
|
||
}
|
||
} else {
|
||
if (getRequest.userToken) {
|
||
store.commit('setUserInfo', {
|
||
token: getRequest.userToken
|
||
});
|
||
$http.get("api/mime/v1/info").then(res => {
|
||
store.commit('setUserInfo', res);
|
||
callback && callback();
|
||
});
|
||
} else {
|
||
appMutual("jumpLogin", null, function() {
|
||
if (type == "force") {
|
||
// 没登录跳转回登录页
|
||
uni.showToast({
|
||
icon: 'none',
|
||
title: '用户信息失效,请重新登陆。'
|
||
})
|
||
uni.navigateTo({
|
||
url: "/pages/user/login"
|
||
});
|
||
}else{
|
||
uni.showModal({
|
||
title:"提示",
|
||
content:"您还未登录,请先登录~",
|
||
confirmText: "去登录",
|
||
cancelText: "再逛会",
|
||
success: (res) => {
|
||
if(res.confirm){
|
||
uni.navigateTo({
|
||
url: "/pages/user/login"
|
||
});
|
||
}
|
||
}
|
||
});
|
||
}
|
||
});
|
||
}
|
||
}
|
||
}
|