uni-app获取手机型号并判断图片位置显示

data() {return {title: 'Hello',phoneModel: "",codeheight:320}},

// 判断全面屏手机

uni.getSystemInfo({

success:(res)=>{

if(res.model.search('iPhone')){

this.phoneModel =res.model

}else if(Math.round(res.screenHeight)>700){

this.codeheight = Math.round(res.screenHeight)-350

}

if(Math.round(res.screenHeight)<650){

this.codeheight = (600-Math.round(res.screenHeight))+320

}

}

})

你可能感兴趣的:(uni-app获取手机型号并判断图片位置显示)