wxapi.js 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. //引入微信jssdk
  2. const wx = require('@/js_sdk/jweixin-1.4.0.js')
  3. //配置注册url
  4. const url = '/app/getJsapiTicket';
  5. //http方法
  6. import Request from '@/js_sdk/luch-request/luch-request/index.js';
  7. const $http = new Request();
  8. //系统域名url
  9. // encodeURIComponent
  10. const href = location.href.split('#')[0];
  11. // const href = location.href.split("?")[0];
  12. // console.log('href',href);
  13. let token = uni.getStorageSync("token");
  14. import { config } from './config/config';
  15. //系统域名url
  16. export default {
  17. ...wx,
  18. isOk: false,
  19. async config() {
  20. wx.config({
  21. debug: false,
  22. jsApiList: [
  23. "updateAppMessageShareData",
  24. "updateTimelineShareData",
  25. "onMenuShareTimeline",
  26. "onMenuShareAppMessage",
  27. "onMenuShareQQ",
  28. "onMenuShareWeibo",
  29. "onMenuShareQZone",
  30. "startRecord",
  31. "stopRecord",
  32. "onVoiceRecordEnd",
  33. "playVoice",
  34. "pauseVoice",
  35. "stopVoice",
  36. "onVoicePlayEnd",
  37. "uploadVoice",
  38. "downloadVoice",
  39. "chooseImage",
  40. "previewImage",
  41. "uploadImage",
  42. "downloadImage",
  43. "translateVoice",
  44. "getNetworkType",
  45. "openLocation",
  46. "getLocation",
  47. "hideOptionMenu",
  48. "showOptionMenu",
  49. "hideMenuItems",
  50. "showMenuItems",
  51. "hideAllNonBaseMenuItem",
  52. "showAllNonBaseMenuItem",
  53. "closeWindow",
  54. "scanQRCode",
  55. "chooseWXPay",
  56. "openProductSpecificView",
  57. "addCard",
  58. "chooseCard",
  59. "openCard",
  60. ],
  61. ...(await $http.get(config.apiBaseurl + url, {
  62. params: {url: href},
  63. header:{Accept:'application/json',
  64. Authorization: 'Bearer '+ token},
  65. dataType: 'json'})
  66. ).data.data,
  67. });
  68. wx.ready(e => {
  69. this.isOk = true;
  70. this.hideMenu();
  71. });
  72. wx.error(e => {
  73. console.log("失败",e.errMsg);
  74. this.isOk = false;
  75. });
  76. },
  77. hideMenu() {
  78. wx.hideAllNonBaseMenuItem();
  79. wx.hideMenuItems({
  80. menuList: [
  81. "menuItem:share:appMessage",
  82. "menuItem:profile",
  83. "menuItem:addContact",
  84. "menuItem:dayMode",
  85. "menuItem:nightMode",
  86. "menuItem:share:timeline",
  87. "menuItem:favorite"
  88. ] // 要隐藏的菜单项,只能隐藏“传播类”和“保护类”按钮,所有menu项见附录3
  89. });
  90. },
  91. showMenu() {
  92. wx.showMenuItems({
  93. menuList: [
  94. "menuItem:share:appMessage",
  95. "menuItem:profile",
  96. "menuItem:addContact",
  97. "menuItem:dayMode",
  98. "menuItem:nightMode",
  99. "menuItem:share:timeline",
  100. "menuItem:favorite"
  101. ] // 要显示的菜单项,所有menu项见附录3
  102. });
  103. },
  104. /**
  105. * 分享配置
  106. * @param {Object} info
  107. */
  108. share(data = {}, info = {}) {
  109. //添加链接时间戳
  110. // data.v = new Date().getTime();
  111. // console.log("shareData",data)
  112. // let search = [];
  113. // for (const [key, value] of Object.entries(data)) {
  114. // // search.push(`${key}=${encodeURIComponent(value)}`);
  115. // search.push(`${key}=${value}`);
  116. // }
  117. // search = "?" + search.join("&");
  118. let afterEndUrl = config.afterEndUrl;
  119. // let afterEndUrl = 'http://tanhui.hongweisoft.com/api/wechat/h5/authorize?returnUrl='
  120. // let afterEndUrl = 'http://gzhjt.gzsdzth.com/api/wechat/h5/authorize?returnUrl='
  121. let fullUrl = afterEndUrl + location.href.split('?')[0] + '?togetherId=' + data.togetherId + '/#/' + data.routeUrl
  122. const shareInfo = {
  123. title: data.nickname + '邀请你参与贵州省单株碳汇精准扶贫',
  124. link: fullUrl,
  125. desc: "购碳扶贫,你我同行",
  126. imgUrl: href + "/static/logo.png",
  127. trigger(res) {},
  128. success(res) {},
  129. cancel(res) {},
  130. fail(res) {},
  131. ...info
  132. };
  133. console.log('shareInfo',shareInfo,'fullUrl',fullUrl)
  134. //自定义“分享给朋友”及“分享到QQ”按钮的分享内容(1.4.0)
  135. wx.updateAppMessageShareData(shareInfo);
  136. //自定义“分享到朋友圈”及“分享到QQ空间”按钮的分享内容(1.4.0)
  137. wx.updateTimelineShareData(shareInfo);
  138. },
  139. //拉起微信浏览器端支付
  140. JSAPI(res) {
  141. return new Promise(r => {
  142. console.log('JSAPI res',res);
  143. wx.chooseWXPay({
  144. "appId": res.appId,
  145. "timestamp": res.timeStamp, //时间戳,自1970年以来的秒数
  146. "nonceStr": res.nonceStr, //随机串
  147. "package": res.packageValue,
  148. "signType": res.signType, //微信签名方式:
  149. "paySign": res.paySign, //微信签名
  150. success() {
  151. r({
  152. code: 0,
  153. msg: "成功"
  154. });
  155. },
  156. cancel() {
  157. r({
  158. code: 1,
  159. msg: "取消"
  160. });
  161. },
  162. fail() {
  163. r({
  164. code: 2,
  165. msg: "失败"
  166. });
  167. }
  168. });
  169. });
  170. },
  171. }