1 Star 0 Fork 0

道法合一(qq:1126919503)/金盾二毛酒

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 2.06 KB
一键复制 编辑 原始数据 按行查看 历史
道法合一(qq:1126919503) 提交于 2021-08-04 17:21 . tijiao
// 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'
})
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/freesytle/jindun-ermo-wine.git
git@gitee.com:freesytle/jindun-ermo-wine.git
freesytle
jindun-ermo-wine
金盾二毛酒
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385