app.ts 370 B

1234567891011121314151617
  1. // app.ts
  2. const baseConfig = require("./config_base")
  3. App<IAppOption>({
  4. globalData: {
  5. base: baseConfig,
  6. tabActive: '/pages/channelRanking/index'
  7. },
  8. onLaunch() {
  9. // 登录
  10. // wx.login({
  11. // success: res => {
  12. // console.log(res.code)
  13. // // 发送 res.code 到后台换取 openId, sessionKey, unionId
  14. // },
  15. // })
  16. },
  17. })