123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <script>
- import $http from '@/utils/request.js'
- export default {
- globalData: {
- userInfo: {},
- },
- onLaunch: function() {
- uni.hideTabBar()
- },
- onShow: function() {
- this.updateManager()
-
- },
- onHide: function() {
-
- },
- methods: {
- updateManager() {
- const updateManager = uni.getUpdateManager();
- updateManager.onCheckForUpdate(res => {
- // 请求完新版本信息的回调
- // console.log(res.hasUpdate)
- })
- updateManager.onUpdateReady(() => {
- uni.showModal({
- title: '更新提示',
- content: '新版本已经准备好,即将重启应用',
- showCancel: false,
- success(res) {
- if (res.confirm) {
- // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
- updateManager.applyUpdate()
- }
- }
- })
- })
- updateManager.onUpdateFailed(() => {
- // 新的版本下载失败
- uni.showModal({
- title: '更新提示',
- content: '新版本下载失败',
- showCancel: false
- })
- })
- },
- }
- }
- </script>
- <style lang="scss">
- /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
- @import "@/uni_modules/uview-ui/index.scss";
- // 设置整个项目的背景色
- page {
- background-color: #f8f8f8;
- font-size: 14px;
- color: #333;
- }
- view {
- box-sizing: border-box;
- word-break: break-all;
- }
- .container {
- font-size: 14px;
- color: #333;
- padding: 10px;
- }
- .flex {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- </style>
|