加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
孙颖洲 提交于 2020-06-24 18:05 . 666
<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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化