代码拉取完成,页面将自动刷新
同步操作将从 吉海科技/uniapp简约精美小程序前端 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。