2 Star 3 Fork 1

yinfengrui/星宿UI V2X

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
yinfengrui 提交于 2023-03-18 20:17 . V2.4
<!--/*
*
* 星宿ui设计
* author: yinfengrui
* organization: 枫瑞博客 www.frbkw.com
* 微信公众号: 枫瑞博客网
* 技术支持微信号:qaz449275996
* 开源协议:MIT
*Copyright (c) 2020 https://www.frbkw.com All rights reserved.
*/-->
<script>
const updateManager = uni.getUpdateManager();
export default {
globalData:{
totalte_sources:[],
togetrecdown:[]
},
onLaunch: function() {
console.log('App Launch');
// 检测更新
this.Getup();
},
onShow: function() {
console.log('App Show');
},
onHide: function() {
console.log('App Hide');
},
onThemeChange: function(options) {
console.log(options, '系统主题');
},
methods: {
// 检测更新
Getup: function() {
updateManager.onCheckForUpdate(function(res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate);
});
updateManager.onUpdateReady(function(res) {
uni.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success(res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate();
}
}
});
});
updateManager.onUpdateFailed(function(res) {
// 新的版本下载失败
});
},
}
};
</script>
<style>
/* #ifdef MP-TOUTIAO */
@font-face {
font-family: uniicons;
src: url('/static/uni.ttf');
}
/* #endif */
.fengrui-blue-btn-lo-hover{
background-color: red;
}
.fengrui-li-hover{
background-color: #f0f3f3;
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML/CSS
1
https://gitee.com/fengruiblog/stars-ui-v2.git
git@gitee.com:fengruiblog/stars-ui-v2.git
fengruiblog
stars-ui-v2
星宿UI V2X
master

搜索帮助