67 lines
1.9 KiB
Vue
67 lines
1.9 KiB
Vue
<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(){
|
||
// #ifdef APP-PLUS
|
||
if(uni.getSystemInfoSync().platform != "devtools"){//devtools:开发版 值域为:ios、android、mac(3.1.10+)、windows(3.1.10+)、linux(3.1.10+)
|
||
console.log = () =>{}
|
||
}
|
||
setTimeout(()=>{
|
||
uni.reLaunch({
|
||
url:'/pages/login/login'
|
||
})
|
||
},3000)
|
||
// #endif
|
||
// #ifdef H5
|
||
if(uni.getSystemInfoSync().platform != "development"){//devtools:开发版 值域为:ios、android、mac(3.1.10+)、windows(3.1.10+)、linux(3.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"){
|
||
// (开发版,体验版)-配置全局域名
|
||
// uni.setStorageSync('hostapi','https://hengmei.scdxtc.cn/api/');
|
||
} else {
|
||
// 清除所有输出日志
|
||
console.log = () =>{};
|
||
// 正式版-配置全局域名
|
||
// uni.setStorageSync('hostapi','https://hm.hmzfyy.cn/api/');
|
||
}
|
||
setTimeout(()=>{
|
||
uni.reLaunch({
|
||
url:'/pages/tabbar/pagehome/pagehome'
|
||
})
|
||
},3000)
|
||
// #endif
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
page{background-color: #FFFFFF;}
|
||
</style>
|