app.js 346 B

12345678910111213141516171819
  1. // app.js
  2. import { app } from "./config/index";
  3. App({
  4. onLaunch() {
  5. let info = wx.getSystemInfoSync()
  6. this.globalData.deviceInfo = info
  7. this.globalData.top = wx.getMenuButtonBoundingClientRect()
  8. },
  9. globalData: {
  10. userInfo: null,
  11. m_file: null,
  12. scenes:[]
  13. },
  14. onHide(){
  15. app.websocket && app.send('close')
  16. }
  17. })