wxapi.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. //引入微信jssdk
  2. const wx = require('@/js_sdk/jweixin-1.4.0.js')
  3. import { config } from './config/config';
  4. //配置注册url
  5. const url = config.apiBaseurl + 'wechat/sign';
  6. //http方法
  7. import Request from '@/js_sdk/luch-request/luch-request/index.js';
  8. const $http = new Request();
  9. //系统域名url
  10. const href = location.href.split('#')[0];
  11. // const href = location.href.split("?")[0]
  12. $http.get(url, {params: {url: href, list: 'scanQRCode',dataType: 'json'}}).then(res => {
  13. let str = JSON.parse( res.data.config)
  14. console.log( 'res.data.config',str )
  15. wx.config({
  16. // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  17. debug: true,
  18. // 必填,公众号的唯一标识
  19. appId: str.appId,
  20. // 必填,生成签名的时间戳
  21. timestamp: "" + str.timestamp,
  22. // 必填,生成签名的随机串
  23. nonceStr: str.nonceStr,
  24. // 必填,签名
  25. signature: str.signature,
  26. // 必填,需要使用的JS接口列表,所有JS接口列表
  27. jsApiList: ['checkJsApi', 'scanQRCode']
  28. });
  29. }).catch(err => {
  30. console.log(err)
  31. })
  32. //系统域名url
  33. export default {
  34. ...wx,
  35. isOk: true,
  36. async config() {
  37. wx.config({
  38. debug: true,
  39. jsApiList: [
  40. "scanQRCode",
  41. ],
  42. ...(await JSON.parse( $http.get(url, {params: {url: href, list: 'scanQRCode',dataType: 'json'}}).data.config)),
  43. });
  44. wx.ready(e => {
  45. this.isOk = true;
  46. alert('wxapi');
  47. wx.checkJsApi({
  48. jsApiList: ['scanQRCode'],
  49. success: function (res) {
  50. alert('checkJsApi'+res)
  51. }
  52. });
  53. // this.hideMenu();
  54. });
  55. wx.error(e => {
  56. console.log("失败")
  57. alert("出错了:" + res.errMsg);
  58. this.isOk = false;
  59. });
  60. },
  61. hideMenu() {
  62. wx.hideAllNonBaseMenuItem();
  63. },
  64. showMenu() {
  65. wx.showMenuItems({
  66. menuList: [
  67. "menuItem:share:appMessage",
  68. "menuItem:profile",
  69. "menuItem:addContact",
  70. "menuItem:dayMode",
  71. "menuItem:nightMode",
  72. "menuItem:share:timeline",
  73. "menuItem:favorite"
  74. ] // 要显示的菜单项,所有menu项见附录3
  75. });
  76. },
  77. //
  78. JSAPI() {
  79. console.log('1111');
  80. let result;
  81. return new Promise(r => {
  82. wx.scanQRCode({
  83. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  84. scanType: ["qrCode","barCode"], // 可以指定扫二维码还是一维码,默认二者都有
  85. success: function (res) {
  86. alert('333'+res);
  87. result = res.resultStr; // 当needResult 为 1 时,扫码返回的结果
  88. // return result;
  89. },
  90. fail:function(err){
  91. alert(err)
  92. }
  93. });
  94. });
  95. alert('444'+result);
  96. return result;
  97. },
  98. }