wxapi.js 4.4 KB

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