App.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <script>
  2. //app.js
  3. var user = require('./common/user.js');
  4. var config = require('./common/config.js');
  5. var http = require('./common/http.js');
  6. var storage = require('./common/storage.js');
  7. import SystemInfoUtil from './common/SystemInfoUtil.js';
  8. var eventBus = require('./common/event.js');
  9. export default {
  10. data() {
  11. return {};
  12. },
  13. onLaunch: function(options) {
  14. if (options.query && options.query.qrCode) {
  15. this.globalData.qrCode = options.query.qrCode
  16. }
  17. var that = this;
  18. SystemInfoUtil.init();
  19. //http.getAppConfig();
  20. // const accountInfo = wx.getAccountInfoSync()
  21. // const pData = {
  22. // appid: accountInfo.miniProgram.appId,
  23. // terminal: 'wx_app'
  24. // }
  25. // http.getApi(config.API_INDEX_APP_CONFIG, pData, function(resp) {
  26. // if(resp.data.code === 200) {
  27. // const appConfig = resp.data.data.appConfig
  28. // storage.setAppConfig(appConfig)
  29. // wx.setNavigationBarTitle({
  30. // title: appConfig.app_name,
  31. // })
  32. // }
  33. // })
  34. // 登录从本地找openid
  35. // user.getUserInfo(()=>{})
  36. // 获取用户信息
  37. // wx.getSetting({
  38. // success: res => {
  39. // user.getUserInfo()
  40. // // if (res.authSetting['scope.userInfo']) {
  41. // // // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
  42. // // wx.getUserInfo({
  43. // // success: res => {
  44. // // // 可以将 res 发送给后台解码出 unionId
  45. // // that.globalData.userInfo = res.userInfo
  46. // // // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
  47. // // // 所以此处加入 callback 以防止这种情况
  48. // // if (this.userInfoReadyCallback) {
  49. // // this.userInfoReadyCallback(res)
  50. // // }
  51. // // }
  52. // // })
  53. // // }
  54. // }
  55. // })
  56. },
  57. globalData: {
  58. isScan: false,
  59. preventClick: true,
  60. userInfo: null,
  61. qrCode:'',
  62. adapterStateChangeFunc: {},
  63. connectionStateChangeFunc: {},
  64. characteristicStateChangeFunc: {},
  65. connectionState: {},
  66. bus: eventBus.eventBus,
  67. orderSign: '',
  68. orderSignUrl: '',
  69. reportData: {},
  70. reponseData: {},
  71. bluetoothConfig: {},
  72. deviceBTBMSBuf: {} ,// 用于分包组包
  73. permissionArr:[]
  74. }
  75. };
  76. </script>
  77. <style>
  78. @import './app.css';
  79. @font-face {
  80. font-family: DIN;
  81. src: url('~@/static/font/DIN-MediumItalicAlt.otf');
  82. }
  83. .map-label {
  84. min-width: 250rpx;
  85. padding: 0 20rpx;
  86. height: 56rpx;
  87. background: #FFFFFF;
  88. box-shadow: 0rpx 0rpx 16rpx 0rpx rgba(197,208,219,0.6);
  89. border-radius: 28rpx;
  90. font-weight: 500;
  91. font-size: 26rpx;
  92. color: #060809;
  93. display: flex;
  94. align-items: center;
  95. justify-content: center;
  96. margin-top: 120rpx;
  97. }
  98. </style>