flying-monkey/pages/guide-page/guide-page.vue

70 lines
1.9 KiB
Vue
Raw Normal View History

<template>
<view :style="{height: windowHeight+'px'}" style="overflow: hidden;">
<image src="/static/public/icon-guide.png" mode="widthFix" style="width: 100%;"></image>
</view>
</template>
<script>
export default {
data() {
return {
windowHeight:uni.getSystemInfoSync().windowHeight
}
},
onLoad() {
this.checkContext();
},
methods: {
// 检测是否是微信端
checkContext(){
setTimeout(()=>{
uni.reLaunch({
url:'/pages/login/login'
})
},3000)
2022-03-16 00:58:52 +00:00
// #ifdef APP-PLUS
// if(uni.getSystemInfoSync().platform != "devtools"){//devtools开发版 值域为ios、android、mac3.1.10+、windows3.1.10+、linux3.1.10+
// console.log = () =>{}
// }
// setTimeout(()=>{
// uni.reLaunch({
// url:'/pages/login/login'
// })
// },3000)
// #endif
// #ifdef H5
// if(uni.getSystemInfoSync().platform != "development"){//devtools开发版 值域为ios、android、mac3.1.10+、windows3.1.10+、linux3.1.10+
// console.log = () =>{}
// }
// setTimeout(()=>{
// uni.reLaunch({
// url:'/pages/login/login'
// })
// },3000)
// #endif
// 微信小程序原生API性能优化
// #ifdef MP-WEIXIN
// let hInfo = wx.getAccountInfoSync();
// // console.log(hInfo.envVersion);//develop:开发版 trial体验版 release正式版
// if(hInfo.miniProgram.envVersion == "develop" || hInfo.miniProgram.envVersion == "trial"){
// // (开发版,体验版)-配置全局域名
// } else {
// // 清除所有输出日志
// console.log = () =>{};
// // 正式版-配置全局域名
// }
// setTimeout(()=>{
// uni.reLaunch({
// url:'/pages/tabbar/pagehome/pagehome'
// })
// },3000)
// #endif
}
}
}
</script>
<style>
page{background-color: #FFFFFF;}
</style>