sdk.js 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. var jweixin = require("jweixin-module");
  2. import http from "@/shopro/request/index";
  3. import $platform from "@/shopro/platform";
  4. export default {
  5. //判断是否在微信中
  6. isWechat() {
  7. var ua = window.navigator.userAgent.toLowerCase();
  8. if (ua.match(/micromessenger/i) == "micromessenger") {
  9. return true;
  10. } else {
  11. return false;
  12. }
  13. },
  14. // 鉴权页面
  15. initJssdk(callback) {
  16. http("common.wxJssdk", {
  17. uri: encodeURIComponent($platform.entry())
  18. }).then(res => {
  19. jweixin.config({
  20. debug: res.data.debug,
  21. appId: res.data.appId,
  22. timestamp: res.data.timestamp,
  23. nonceStr: res.data.nonceStr,
  24. signature: res.data.signature,
  25. jsApiList: res.data.jsApiList,
  26. openTagList: res.data.openTagList
  27. });
  28. if (callback) {
  29. callback(res.data);
  30. }
  31. });
  32. },
  33. //在需要定位页面调用
  34. getLocation(callback) {
  35. this.isWechat() && this.initJssdk(function(res) {
  36. jweixin.ready(function() {
  37. jweixin.getLocation({
  38. type: "gcj02", // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02'
  39. success: function(res) {
  40. callback(res);
  41. },
  42. fail: function(res) {
  43. console.log("%c微信H5sdk,getLocation失败:",
  44. "color:green;background:yellow");
  45. },
  46. });
  47. });
  48. });
  49. },
  50. //获取微信收货地址
  51. openAddress(callback) {
  52. this.isWechat() && this.initJssdk(function(res) {
  53. jweixin.ready(function() {
  54. jweixin.openAddress({
  55. success: function(res) {
  56. callback(res);
  57. },
  58. fail: function(err) {
  59. console.log("%c微信H5sdk,openAddress失败:",
  60. "color:green;background:yellow");
  61. },
  62. complete: function(msg) {}
  63. });
  64. });
  65. });
  66. },
  67. // 微信扫码
  68. scanQRCode(callback) {
  69. this.isWechat() && this.initJssdk(function(res) {
  70. jweixin.ready(function() {
  71. jweixin.scanQRCode({
  72. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  73. scanType: ["qrCode", "barCode"], // 可以指定扫二维码还是一维码,默认二者都有
  74. success: function(res) {
  75. callback(res);
  76. },
  77. fail: function(res) {
  78. console.log("%c微信H5sdk,scanQRCode失败:",
  79. "color:green;background:yellow");
  80. },
  81. });
  82. });
  83. });
  84. },
  85. // 微信分享
  86. share(data, callback) {
  87. this.isWechat() && this.initJssdk(function(res) {
  88. jweixin.ready(function() {
  89. var shareData = {
  90. title: data.title,
  91. desc: data.desc,
  92. link: data.path,
  93. imgUrl: data.image,
  94. success: function(res) {
  95. callback(res);
  96. // 分享后的一些操作,比如分享统计等等
  97. },
  98. cancel: function(res) {}
  99. };
  100. jweixin.updateAppMessageShareData(shareData); //新版接口
  101. //分享到朋友圈接口
  102. // jweixin.updateTimelineShareData(shareData);
  103. });
  104. });
  105. },
  106. // 打开坐标位置
  107. openLocation(data, callback) { //打开位置
  108. this.isWechat() && this.initJssdk(function(res) {
  109. jweixin.ready(function() {
  110. jweixin.openLocation({ //根据传入的坐标打开地图
  111. latitude: data.latitude,
  112. longitude: data.longitude
  113. });
  114. });
  115. });
  116. },
  117. // 选择图片
  118. chooseImage(callback) { //选择图片
  119. this.isWechat() && this.initJssdk(function(res) {
  120. jweixin.ready(function() {
  121. jweixin.chooseImage({
  122. count: 1,
  123. sizeType: ["compressed"],
  124. sourceType: ["album"],
  125. success: function(rs) {
  126. callback(rs);
  127. }
  128. });
  129. });
  130. });
  131. },
  132. //微信支付
  133. wxpay(data, callback) {
  134. let that = this;
  135. this.isWechat() && this.initJssdk(function(res) {
  136. jweixin.ready(function() {
  137. jweixin.chooseWXPay({
  138. timestamp: data
  139. .timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
  140. nonceStr: data.nonceStr, // 支付签名随机串,不长于 32 位
  141. package: data.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
  142. signType: data.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
  143. paySign: data.paySign, // 支付签名
  144. success: function(res) {
  145. callback(res);
  146. },
  147. fail: function(res) {
  148. console.log("%c微信H5sdk,chooseWXPay失败:",
  149. "color:green;background:yellow");
  150. callback(res);
  151. },
  152. cancel: function(res) {
  153. },
  154. });
  155. });
  156. });
  157. }
  158. };