http.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. import wx from 'weixin-jsapi'
  2. // 扫一扫
  3. export function SM(Vue) {
  4. return new Promise((resolve, reject) => {
  5. let param = {
  6. requestUrl: location.href.split('#')[0]
  7. };
  8. Vue.$http.post("service/wechat/getJsConfig", param).then(res => {
  9. res = res.data;
  10. if (res) {
  11. wx.config({
  12. debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  13. appId: res.appId, // 必填,企业号的唯一标识,此处填写企业号corpid
  14. timestamp: res.timestamp, // 必填,生成签名的时间戳
  15. nonceStr: res.nonceStr, // 必填,生成签名的随机串
  16. signature: res.signature, // 必填,签名,见附录1
  17. jsApiList: res.jsApiList // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  18. });
  19. wx.ready(function() {
  20. wx.scanQRCode({
  21. desc: "scanQRCode desc",
  22. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  23. scanType: ["qrCode", "barCode"], // 可以指定扫二维码还是一维码,默认二者都有
  24. success: function(res) {
  25. // 当needResult 为 1 时,扫码返回的结果
  26. let str = res.resultStr.replace(/[\s\/]/g, '') || 'none';
  27. resolve(str);
  28. }
  29. });
  30. });
  31. }
  32. })
  33. });
  34. }