app.ts 706 B

12345678910111213141516171819202122232425
  1. // app.ts
  2. // import './xr-custom/components/AutoRotate';
  3. // import './xr-custom/elements/xr-auto-rotate-touchable-gltf';
  4. // import './xr-custom/assets/geometry-star';
  5. // import './xr-custom/assets/effect-shining';
  6. // import './xr-custom/elements/xr-shining-star';
  7. // import './xr-custom/assets/effect-last-record-final';
  8. App<IAppOption>({
  9. globalData: {},
  10. onLaunch() {
  11. // 展示本地存储能力
  12. // const logs = wx.getStorageSync('logs') || []
  13. // logs.unshift(Date.now())
  14. // wx.setStorageSync('logs', logs)
  15. // 登录
  16. wx.login({
  17. success: res => {
  18. console.log(res.code)
  19. // 发送 res.code 到后台换取 openId, sessionKey, unionId
  20. },
  21. })
  22. },
  23. })