| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- import {
- spread
- } from "@/api/user";
- import Cache from "@/utils/cache";
- /**
- * 绑定用户授权
- * @param {Object} puid
- */
- export function silenceBindingSpread() {
- //#ifdef H5
- let puid = Cache.get('spread');
- //#endif
- //#ifdef MP
- let puid = getApp().globalData.spid;
- if (!puid) {
- puid = getApp().globalData.code;
- }
- //#endif
- puid = parseInt(puid);
- if (Number.isNaN(puid)) {
- puid = 0;
- }
- if (puid) {
- //#ifdef H5
- Cache.clear('spread');
- //#endif
- //#ifdef MP
- getApp().globalData.spid = 0;
- getApp().globalData.code = 0;
- //#endif
- }
- }
- export function isWeixin() {
- return navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1;
- }
- export function parseQuery() {
- const res = {};
- const query = (location.href.split("?")[1] || "")
- .trim()
- .replace(/^(\?|#|&)/, "");
- if (!query) {
- return res;
- }
- // const VUE_APP_WS_URL = process.env.VUE_APP_WS_URL || `ws://${location.hostname}:20003`;
- // const ishttps = 'https:' == document.location.protocol ? true : false;
- // const VUE_APP_WS_URL = ishttps ? `wss://mer.crmeb.net?type=user&token=${token}` : `ws://mer.crmeb.net?type=user&token=${token}`;
- // export { VUE_APP_WS_URL }
-
- query.split("&").forEach(param => {
- const parts = param.replace(/\+/g, " ").split("=");
- const key = decodeURIComponent(parts.shift());
- const val = parts.length > 0 ? decodeURIComponent(parts.join("=")) : null;
- if (res[key] === undefined) {
- res[key] = val;
- } else if (Array.isArray(res[key])) {
- res[key].push(val);
- } else {
- res[key] = [res[key], val];
- }
- });
- return res;
- }
- let token = ''
- try {
- token = uni.getStorageSync('LOGIN_STATUS_TOKEN')
- console.log(token, 'this')
- } catch (error) {
- }
- // const VUE_APP_WS_URL = process.env.VUE_APP_WS_URL || `ws://${location.hostname}?type=user&token=${token}`;
- // const VUE_APP_WS_URL = `wss://mer.crmeb.net?type=user&token=${token}`
- export default parseQuery;
|