1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
(function () { var rocWxAuth = { openid: "", code: "", appid: "wxb44d9403cfa1339b", init: function () { this.wxAuth(); }, wxAuth() { var that = this; that.openid = localStorage.getItem("openid"); if (that.openid) { console.log(that.openid, "有openid"); } else { that.getWxCode(); } }, getWxCode() { var that = this; var local = window.location.href; const appid = that.appid; that.code = that.getUrlCode().code; if (that.code == null || that.code === "") { window.location.href = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${encodeURIComponent( local )}&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect`; } else { that.getOpenId(that.code); } }, getOpenId(code) { var that = this; ROAjax.Post("/paving/Login/getOpenid", { code: code }, function (res) { if (res.code == 1) { that.openid = res.data.openid; localStorage.setItem("openid", that.openid); } }); }, getUrlCode() { var url = location.search; var theRequest = new Object(); if (url.indexOf("?") != -1) { var str = url.substr(1); var strs = str.split("&"); for (var i = 0; i < strs.length; i++) { theRequest[strs[i].split("=")[0]] = strs[i].split("=")[1]; } } return theRequest; }, }; rocWxAuth.init(); })();
|