代码拉取完成,页面将自动刷新
<script>
export default {
onLaunch: function() {
console.log('App Launch');
this.$store.commit('setToken')
this.$store.commit('userLogin')
this.check();
setTimeout(() => {
this.update();
}, 2000)
},
onShow: function() {
console.log('App Show');
},
onHide: function() {
console.log('App Hide');
},
data() {
return {
version: '666',
name: '666'
};
},
methods: {
check() {
plus.runtime.getProperty(plus.runtime.appid, info => {
this.version = info.version
this.name = info.name
})
},
update() {
this.$u.get('/update', {
version: this.version,
name: this.name
}).then(res => {
let data = res.data.result
console.log(data)
if (data.update) {
uni.showModal({
title: "更新提示",
content: '有新版本更新,点击查看',
success: (res) => {
if (res.confirm) {
this.$u.route('/pages/mine/update')
}
}
})
}
})
}
}
};
</script>
<style lang="scss">
@import "/colorui/main.css";
@import "/colorui/icon.css";
@import "/uview-ui/index.scss";
@import "/app.css";
</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。