// app.js
App({
globalData:{
srceenWidth:375,
screenHeight:667
},
onLaunch() {
// 1.获取设备信息
wx.getSystemInfo({
success: (res) => {
console.log(res);
this.globalData.srceenWidth = res.screenWidth
this.globalData.screenHeight = res.screenHeight
},
})
}
})
src和scr,拼错了