app.js 485 B

1234567891011121314151617181920212223242526
  1. // app.js
  2. const util = require("./utils/jmsUtil.js");
  3. App({
  4. onLaunch() {
  5. // 登录
  6. // wx.login({
  7. // success: res => {
  8. // // 发送 res.code 到后台换取 openId, sessionKey, unionId
  9. // }
  10. // })
  11. },
  12. globalData: {
  13. userInfo: null,
  14. mapKey:'JA2BZ-XGOEU-UNZVD-46G64-S6MYJ-6BBF4',
  15. hasLogin:false,
  16. city:'',
  17. alertNoticeInfo:{},
  18. isUat:false,
  19. activeTab:7,
  20. currentDay: util.formetdate(new Date()),
  21. refundDetail:{
  22. }
  23. }
  24. })