sdk-h5-weixin.js 5.0 KB

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