index.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. import {
  2. spread
  3. } from "@/api/user";
  4. import Cache from "@/utils/cache";
  5. import Store from '@/store/index';
  6. export function configMap(args, init) {
  7. if(Array.isArray(args)) {
  8. return args.reduce((i, v)=>{
  9. i[v] = () => Store.getters.globalData[v];
  10. return i;
  11. }, init || {})
  12. }else{
  13. return Object.keys(args).reduce((i, v)=>{
  14. i[v] = () => {
  15. const val = Store.getters.globalData[v];
  16. return (val === undefined || val === null || val === '') ? args[v] : val;
  17. };
  18. return i;
  19. }, init || {})
  20. }
  21. }
  22. export function redirect(url){
  23. uni.switchTab({
  24. url,
  25. fail(){
  26. uni.redirectTo({
  27. url
  28. })
  29. }
  30. })
  31. }
  32. /**
  33. * 转换商户跳转链接, 自动追加商户 id
  34. * @param {string} path
  35. * @param {int} mer_id
  36. * @param {string} name 商户id 参数名, 默认 mer_id
  37. */
  38. export function merPath(path, mer_id, name){
  39. if(!mer_id) return path;
  40. path += ((path.indexOf('?') > -1 ? '&' : '?') + (name || 'mer_id') + '=' + mer_id);
  41. return path;
  42. }
  43. /**
  44. * 绑定用户授权
  45. * @param {Object} puid
  46. */
  47. export function silenceBindingSpread() {
  48. //#ifdef H5
  49. let puid = Cache.get('spread');
  50. //#endif
  51. //#ifdef MP || APP-PLUS
  52. let puid = getApp().globalData.spid;
  53. if (!puid) {
  54. puid = getApp().globalData.code;
  55. }
  56. //#endif
  57. puid = parseInt(puid);
  58. if (Number.isNaN(puid)) {
  59. puid = 0;
  60. }
  61. if (puid) {
  62. //#ifdef H5
  63. Cache.clear('spread');
  64. //#endif
  65. //#ifdef MP || APP-PLUS
  66. getApp().globalData.spid = 0;
  67. getApp().globalData.code = 0;
  68. //#endif
  69. }
  70. }
  71. export function isWeixin() {
  72. return navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1;
  73. }
  74. export function parseQuery() {
  75. const res = {};
  76. const query = (location.href.split("?")[1] || "")
  77. .trim()
  78. .replace(/^(\?|#|&)/, "");
  79. if (!query) {
  80. return res;
  81. }
  82. // const VUE_APP_WS_URL = process.env.VUE_APP_WS_URL || `ws://${location.hostname}:20003`;
  83. // const ishttps = 'https:' == document.location.protocol ? true : false;
  84. // const VUE_APP_WS_URL = ishttps ? `wss://mer.crmeb.net?type=user&token=${token}` : `ws://mer.crmeb.net?type=user&token=${token}`;
  85. // export { VUE_APP_WS_URL }
  86. query.split("&").forEach(param => {
  87. const parts = param.replace(/\+/g, " ").split("=");
  88. const key = decodeURIComponent(parts.shift());
  89. const val = parts.length > 0 ? decodeURIComponent(parts.join("=")) : null;
  90. if (res[key] === undefined) {
  91. res[key] = val;
  92. } else if (Array.isArray(res[key])) {
  93. res[key].push(val);
  94. } else {
  95. res[key] = [res[key], val];
  96. }
  97. });
  98. return res;
  99. }
  100. // +----------------------------------------------------------------------
  101. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  102. // +----------------------------------------------------------------------
  103. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  104. // +----------------------------------------------------------------------
  105. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  106. // +----------------------------------------------------------------------
  107. // | Author: CRMEB Team <admin@crmeb.com>
  108. // +----------------------------------------------------------------------
  109. let token = ''
  110. try {
  111. token = uni.getStorageSync('LOGIN_STATUS_TOKEN')
  112. console.log(token, 'this')
  113. } catch (error) {
  114. }
  115. // const VUE_APP_WS_URL = process.env.VUE_APP_WS_URL || `ws://${location.hostname}?type=user&token=${token}`;
  116. // const VUE_APP_WS_URL = `wss://mer.crmeb.net?type=user&token=${token}`
  117. export default parseQuery;