App.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <script>
  2. //app.js
  3. var http = require('./common/http.js');
  4. import SystemInfoUtil from './common/SystemInfoUtil.js';
  5. export default {
  6. data() {
  7. return {};
  8. },
  9. onLaunch: function () {
  10. SystemInfoUtil.init();
  11. // 登录
  12. // wx.login({
  13. // success: res => {
  14. // // 发送 res.code 到后台换取 openId, sessionKey, unionId
  15. // }
  16. // })
  17. // // 获取用户信息
  18. // wx.getSetting({
  19. // success: res => {
  20. // if (res.authSetting['scope.userInfo']) {
  21. // // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
  22. // wx.getUserInfo({
  23. // success: res => {
  24. // // 可以将 res 发送给后台解码出 unionId
  25. // this.globalData.userInfo = res.userInfo
  26. // // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
  27. // // 所以此处加入 callback 以防止这种情况
  28. // if (this.userInfoReadyCallback) {
  29. // this.userInfoReadyCallback(res)
  30. // }
  31. // }
  32. // })
  33. // }
  34. // }
  35. // })
  36. },
  37. globalData: {
  38. userInfo: null,
  39. adapterStateChangeFunc: {},
  40. connectionStateChangeFunc: {},
  41. characteristicStateChangeFunc: {},
  42. connectionState: {},
  43. bluetoothConfig: {},
  44. deviceBTBMSBuf: {} // 用于分包组包
  45. }
  46. };
  47. </script>
  48. <style>
  49. @import './app.css';
  50. </style>