加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 832 Bytes
一键复制 编辑 原始数据 按行查看 历史
zxltwins 提交于 2023-03-11 15:44 . no commit message
<script>
export default {
onLaunch: function() {
// #ifdef APP-PLUS
plus.navigator.closeSplashscreen();
// 判断是否是平板
uni.getSystemInfo({
success: (res)=>{
if(res.windowWidth > 500){
plus.screen.lockOrientation('landscape-primary'); //平板横屏锁定
console.log("平板横屏锁定")
}else{
plus.screen.lockOrientation('portrait-primary'); //手机竖屏锁定
console.log("手机竖屏锁定")
}
}
});
// #endif
// console.log('App Launch')
},
onShow: function() {
// console.log('App Show')
},
onHide: function() {
// console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
@import '@/common/uni.css';
body{background-color: #ecece1;}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化