3 Star 0 Fork 1

akira_xue/bsc_wechat_app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 1.68 KB
一键复制 编辑 原始数据 按行查看 历史
sixty 提交于 2021-08-27 20:11 . 修复结果页不跳转
// app.js
const AUTH = require('utils/auth')
App({
onLaunch() {
var that = this;
this.globalData.headerBtnPosi = wx.getMenuButtonBoundingClientRect()
wx.getSystemInfo({ // iphonex底部适配
success: res => {
that.globalData.systeminfo = res
}
})
// 检测新版本
const updateManager = wx.getUpdateManager()
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success(res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
});
/**
* 初次加载判断网络情况
* 无网络状态下根据实际情况进行调整
*/
wx.getNetworkType({
success(res) {
const networkType = res.networkType
if (networkType === 'none') {
that.globalData.isConnected = false
wx.showToast({
title: '当前无网络',
icon: 'loading',
duration: 2000
});
}
}
});
/**
* 监听网络状态变化
* 可根据业务需求进行调整
*/
wx.onNetworkStatusChange(function(res) {
if (!res.isConnected) {
that.globalData.isConnected = false
wx.showToast({
title: '网络已断开',
icon: 'loading',
duration: 2000
})
} else {
that.globalData.isConnected = true
wx.hideToast()
}
});
// 验证是否登录
// AUTH.checkHasLogined().then((isLogined) => {
// if (!isLogined) {
// wx.navigateTo({
// url: 'pages/login/login'
// })
// }
// });
},
globalData: {
isConnected: true,
systeminfo: null,
},
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/akira_xue/bsc_wechat_app.git
git@gitee.com:akira_xue/bsc_wechat_app.git
akira_xue
bsc_wechat_app
bsc_wechat_app
main

搜索帮助