wxAuthorized.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. import {
  2. wechatConfig,
  3. share
  4. } from '@/api/wx';
  5. import store from '../store';
  6. // 保存wx对象
  7. let weixinObj = require('jweixin-module');
  8. // 保存分享数据
  9. let shareData = '';
  10. // 保存注册返回appId数据
  11. let appId = '';
  12. //微信登录
  13. /**
  14. * @param {string} 当前页面地址信息
  15. */
  16. export function loginWinxin() {
  17. console.log('1');
  18. let pages, page, path;
  19. try {
  20. pages = getCurrentPages();
  21. // 获取跳转前页面
  22. page = pages[pages.length - 1];
  23. // 获取跳转前路由地址
  24. path = page.route;
  25. } catch (e) {
  26. console.log(e);
  27. //TODO handle the exception
  28. }
  29. // 判断是否在登录页
  30. if (path != 'pages/redirect/redirect') {
  31. weixinObj.ready(() => {
  32. console.log('2');
  33. // 调用
  34. try {
  35. console.log(shareData);
  36. weixinSq(shareData, path);
  37. } catch (e) {
  38. console.log(e);
  39. //TODO handle the exception
  40. }
  41. });
  42. }
  43. };
  44. // 微信授权登录
  45. function weixinSq(data, path) {
  46. // 微信授权后跳转页面
  47. try {
  48. let ul = encodeURIComponent(store.state.baseURL + store.state.urlFile + '/pages/redirect/redirect');
  49. // 打开微信授权页面
  50. let url =
  51. 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' +
  52. appId +
  53. '&redirect_uri=' +
  54. ul +
  55. '&response_type=code&scope=snsapi_userinfo&state=' +
  56. new Date().getTime() +
  57. '#wechat_redirect';
  58. window.location.href = url;
  59. } catch (e) {
  60. console.log(e);
  61. //TODO handle the exception
  62. }
  63. };
  64. // 微信注册
  65. export function weixindata(config) {
  66. //注册微信信息
  67. wechatConfig({
  68. url: window.location.href
  69. })
  70. .then(({
  71. data
  72. }) => {
  73. // 保存appId
  74. appId = data.appId
  75. // 微信信息配置
  76. weixinObj.config({
  77. debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  78. appId: data.appId, // 必填,企业号的唯一标识,此处填写企业号corpid
  79. timestamp: data.timestamp, // 必填,生成签名的时间戳
  80. nonceStr: data.nonceStr, // 必填,生成签名的随机串
  81. signature: data.signature, // 必填,签名,见附录1
  82. jsApiList: data.jsApiList // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  83. });
  84. weixinObj.ready((e) => {
  85. // 判断有无自定义数据
  86. if (config) {
  87. shareLoad(config)
  88. } else {
  89. // 判断是否已经缓存了默认数据
  90. if (shareData) {
  91. shareLoad()
  92. } else {
  93. // 请求获取默认数据
  94. share({}).then(({
  95. data
  96. }) => {
  97. shareData = data.data
  98. shareLoad()
  99. });
  100. }
  101. }
  102. })
  103. })
  104. .catch(e => {
  105. console.log(e);
  106. });
  107. }
  108. // 加载分享数据
  109. function shareLoad(config) {
  110. let mess;
  111. if (config) {
  112. mess = {
  113. link: config.link, // 分享链接
  114. imgUrl: config.imgUrl,
  115. desc: config.desc,
  116. title: config.title,
  117. success: config.success,
  118. fail: config.fail
  119. }
  120. } else {
  121. const userInfo = uni.getStorageSync('userInfo')
  122. console.log(userInfo);
  123. const url = window.location.href + '?spread=' + userInfo.uid;
  124. url = url.replace(/[\?,&]{0,1}from=singlemessage/g, '');
  125. mess = {
  126. title: shareData.title,
  127. link: url, // 分享链接
  128. imgUrl: shareData.img, // 分享图标
  129. desc: shareData.synopsis,
  130. success: function() {
  131. // uni.showModal({
  132. // title: '分享',
  133. // content: '分享成功',
  134. // showCancel: false,
  135. // success: res => {
  136. // console.log('分享成功回调接口');
  137. // },
  138. // fail: () => {},
  139. // complete: () => {}
  140. // });
  141. }
  142. }
  143. }
  144. // 获取仓库数据
  145. // 分享好友
  146. weixinObj.updateAppMessageShareData(mess);
  147. // 分享朋友圈
  148. weixinObj.updateTimelineShareData(mess)
  149. }
  150. export default {
  151. weixinObj,
  152. shareData,
  153. appId
  154. }