isIos(){//iPhone判断
return new Promise((a,b)=>{
wx.getSystemInfo({
success: function(t) {
a(t.model.includes('iPhone'))
},
fail:err=>{
b(err)
}
});
})
},
调用
async onLoad(options) {
const t=this;
try{
t.setData({
isIos:await a.isIos()
})
}catch(err){
console.log(err)
}
},
网友评论