1 Star 0 Fork 276

roseking/project_6291400

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
mark 提交于 2019-04-24 21:02 . 增加支付宝、app的支持
<script>
export default {
onLaunch () {
// 获取店铺配置信息 全局只请求一次
let _this = this
_this.$api.shopConfig(res => {
_this.$store.commit('config', res)
// #ifdef APP-PLUS
if (res.app_update_auto) {
_this.checkVersion()
}
// #endif
})
},
onShow: function () {
console.log('App Show')
},
onHide: function () {
console.log('App Hide')
},
methods: {
// #ifdef APP-PLUS
// app更新检测
checkVersion () {
// 获取应用版本号
let version = plus.runtime.version
//检测当前平台,如果是安卓则启动安卓更新
uni.getSystemInfo({
success:(res) => {
this.updateHandler(res.platform, version)
}
})
},
// 更新操作
updateHandler (platform, version) {
let data = {
platform: platform,
version: version
}
this.$api.appUpdate(data, res => {
if (res.status) {
const info = res.data[0]
if (info.version !== '' && info.version > version) {
uni.showModal({ //提醒用户更新
title: '更新提示',
content: info.note,
success: (res) => {
if (res.confirm) {
plus.runtime.openURL(info.download_url);
}
}
})
}
}
})
}
// #endif
}
}
</script>
<style>
/*每个页面公共css */
@import "./static/css/style.css";
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/roseking/uniapp.git
git@gitee.com:roseking/uniapp.git
roseking
uniapp
project_6291400
master

搜索帮助