12345678910111213141516171819202122232425262728293031 |
- const config = require('./config')
- const themeListeners = []
- global.isDemo = true
- App({
- onLaunch(opts, data) {
- console.log('App Launch', opts)
- if (data && data.path) {
- wx.navigateTo({
- url: data.path,
- })
- }
- if (!wx.cloud) {
- console.error('请使用 2.2.3 或以上的基础库以使用云能力')
- } else {
- wx.cloud.init({
- env: config.envId,
- traceUser: true,
- })
- }
- },
- onShow() {
- },
- onHide() {
- },
- globalData: {
- theme: wx.getSystemInfoSync().theme,
- hasLogin: false,
- openid: null,
- iconTabbar: '/page/weui/example/images/icon_tabbar.png',
- }
- })
|