-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
63 lines (54 loc) · 1.41 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
var QQMapWX = require('./libs/qqmap-wx-jssdk');
App({
/**
* 当小程序初始化完成时,会触发 onLaunch(全局只触发一次)
*/
globalData: {},
onLaunch: function () {
// 测试用版本
// if (!wx.cloud) {
// console.error("请使用更高版本的基础库")
// } else {
// wx.cloud.init({
// env: "test-lxqna",
// traceUser: true,
// })
// }
//上线版本
if (!wx.cloud) {
console.error("请使用更高版本的基础库")
} else {
wx.cloud.init({
env: "online-4gmim6m38cf56463",
traceUser: true,
})
}
let that = this
wx.getSystemInfo({
success: res => {
// that.globalData.screenHeight = res.screenHeight;
that.globalData.screenWidth = res.screenWidth;
// that.globalData.statusBarHeight = res.statusBarHeight
that.globalData.screenHeight = res.screenHeight - res.statusBarHeight
}
})
},
qqmapsdk: new QQMapWX({
key: 'YO6BZ-PIELU-BC4V6-2XZU5-5S4I5-QXB6R'
}),
/**
* 当小程序启动,或从后台进入前台显示,会触发 onShow
*/
onShow: function (options) {
},
/**
* 当小程序从前台进入后台,会触发 onHide
*/
onHide: function () {
},
/**
* 当小程序发生脚本错误,或者 api 调用失败时,会触发 onError 并带上错误信息
*/
onError: function (msg) {
}
})