代码拉取完成,页面将自动刷新
// app.js
App({
onLaunch() {
// 胶囊菜单按钮信息 单位px
let menuButton = wx.getMenuButtonBoundingClientRect()
// 状态栏高度 单位px
let {
statusBarHeight
} = wx.getSystemInfoSync()
// 自定义导航栏高度 单位px
let navBarHeight = (menuButton.top - statusBarHeight) * 2 + menuButton.height + statusBarHeight
this.globalData.navBarHeight = navBarHeight
this.globalData.statusBarHeight = statusBarHeight
this.globalData.menuButton = menuButton
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
// console.log(res.hasUpdate)
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新版本下载失败
})
},
globalData: {
userInfo: null,
navBarHeight: '',
statusBarHeight: '',
menuButton: {},
address: null
},
// 自定义轻提示 String String Function
toast(title, icon = 'none', callback = () => {}) {
wx.showToast({
title: title,
icon: icon,
complete() {
setTimeout(() => {
callback()
}, 1000)
}
})
},
// 自定义数据属性 data- Event
dataSet(e) {
return e.currentTarget.dataset
},
// 预览图片 Array Number
preview(urls, index = 0) {
wx.previewImage({
current: urls[index], // 当前显示图片的http链接
urls: urls // 需要预览的图片http链接列表
})
},
// 权限 需要token
authTo(callback) {
const token = wx.getStorageSync('token')
if (token) {
callback()
}else {
wx.showToast({
title: '请登录',
icon: 'none'
})
}
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。