sdk-h5-weixin.js 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /**
  2. * 本模块封装微信浏览器下的一些方法。
  3. * 更多微信网页开发sdk方法,详见:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html
  4. */
  5. import jweixin, { ready } from 'weixin-js-sdk';
  6. import $helper from '@/sheep/helper';
  7. import AuthUtil from '@/sheep/api/member/auth';
  8. let configSuccess = false;
  9. export default {
  10. // 判断是否在微信中
  11. isWechat() {
  12. const ua = window.navigator.userAgent.toLowerCase();
  13. // noinspection EqualityComparisonWithCoercionJS
  14. return ua.match(/micromessenger/i) == 'micromessenger';
  15. },
  16. isReady(api) {
  17. jweixin.ready(api);
  18. },
  19. // 初始化 JSSDK
  20. async init(callback) {
  21. if (!this.isWechat()) {
  22. $helper.toast('请使用微信网页浏览器打开');
  23. return;
  24. }
  25. // 调用后端接口,获得 JSSDK 初始化所需的签名
  26. const url = location.href.split('#')[0];
  27. const { code, data } = await AuthUtil.createWeixinMpJsapiSignature(url);
  28. if (code === 0) {
  29. jweixin.config({
  30. debug: false,
  31. appId: data.appId,
  32. timestamp: data.timestamp,
  33. nonceStr: data.nonceStr,
  34. signature: data.signature,
  35. jsApiList: ['chooseWXPay'], // TODO 芋艿:后续可以设置更多权限;
  36. openTagList: data.openTagList
  37. });
  38. }
  39. // 监听结果
  40. configSuccess = true;
  41. jweixin.error((err) => {
  42. configSuccess = false;
  43. console.error('微信 JSSDK 初始化失败', err);
  44. // $helper.toast('微信JSSDK:' + err.errMsg);
  45. });
  46. jweixin.ready(() => {
  47. if (configSuccess) {
  48. console.log('微信 JSSDK 初始化成功');
  49. }
  50. })
  51. // 回调
  52. if (callback) {
  53. callback(data);
  54. }
  55. },
  56. //在需要定位页面调用 TODO 芋艿:未测试
  57. getLocation(callback) {
  58. this.isReady(() => {
  59. jweixin.getLocation({
  60. type: 'gcj02', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02'
  61. success: function (res) {
  62. callback(res);
  63. },
  64. fail: function (res) {
  65. console.log('%c微信H5sdk,getLocation失败:', 'color:green;background:yellow');
  66. },
  67. });
  68. });
  69. },
  70. //获取微信收货地址 TODO 芋艿:未测试
  71. openAddress(callback) {
  72. this.isReady(() => {
  73. jweixin.openAddress({
  74. success: function (res) {
  75. callback.success && callback.success(res);
  76. },
  77. fail: function (err) {
  78. callback.error && callback.error(err);
  79. console.log('%c微信H5sdk,openAddress失败:', 'color:green;background:yellow');
  80. },
  81. complete: function (res) {},
  82. });
  83. });
  84. },
  85. // 微信扫码 TODO 芋艿:未测试
  86. scanQRCode(callback) {
  87. this.isReady(() => {
  88. jweixin.scanQRCode({
  89. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  90. scanType: ['qrCode', 'barCode'], // 可以指定扫二维码还是一维码,默认二者都有
  91. success: function (res) {
  92. callback(res);
  93. },
  94. fail: function (res) {
  95. console.log('%c微信H5sdk,scanQRCode失败:', 'color:green;background:yellow');
  96. },
  97. });
  98. });
  99. },
  100. // 更新微信分享信息 TODO 芋艿:未测试
  101. updateShareInfo(data, callback = null) {
  102. this.isReady(() => {
  103. const shareData = {
  104. title: data.title,
  105. desc: data.desc,
  106. link: data.link,
  107. imgUrl: data.image,
  108. success: function (res) {
  109. if (callback) {
  110. callback(res);
  111. }
  112. // 分享后的一些操作,比如分享统计等等
  113. },
  114. cancel: function (res) {},
  115. };
  116. // 新版 分享聊天api
  117. jweixin.updateAppMessageShareData(shareData);
  118. // 新版 分享到朋友圈api
  119. jweixin.updateTimelineShareData(shareData);
  120. });
  121. },
  122. // 打开坐标位置 TODO 芋艿:未测试
  123. openLocation(data, callback) {
  124. this.isReady(() => {
  125. jweixin.openLocation({
  126. //根据传入的坐标打开地图
  127. latitude: data.latitude,
  128. longitude: data.longitude,
  129. });
  130. });
  131. },
  132. // 选择图片 TODO 芋艿:未测试
  133. chooseImage(callback) {
  134. this.isReady(() => {
  135. jweixin.chooseImage({
  136. count: 1,
  137. sizeType: ['compressed'],
  138. sourceType: ['album'],
  139. success: function (rs) {
  140. callback(rs);
  141. },
  142. });
  143. });
  144. },
  145. // 微信支付
  146. wxpay(data, callback) {
  147. this.isReady(() => {
  148. jweixin.chooseWXPay({
  149. timestamp: data.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
  150. nonceStr: data.nonceStr, // 支付签名随机串,不长于 32 位
  151. package: data.packageValue, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
  152. signType: data.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
  153. paySign: data.paySign, // 支付签名
  154. success: function (res) {
  155. callback.success && callback.success(res);
  156. },
  157. fail: function (err) {
  158. callback.fail && callback.fail(err);
  159. },
  160. cancel: function (err) {
  161. callback.cancel && callback.cancel(err);
  162. },
  163. });
  164. });
  165. },
  166. };