wxapi.js 3.7 KB

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