admin
2020-12-19 84920ada00d69565bef33e7e31bc32b426ec5dc3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var help = require('./util/help.js');
App({
  themeColor: "#0080FF",
  appKey: '1000001',
  baseUrl:'http://192.168.3.122:8083',
  onLaunch(options) {
    
    // 第一次打开
    // options.query == {number:1}
    console.info('App onLaunch');
    my.hideFavoriteMenu();
  },
  
  onShow(options) {
    // 从后台被 scheme 重新打开
    // options.query == {number:1}
  },
});