wxAuthorized.js 3.5 KB

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