uni-app 升级配置

20 篇文章 0 订阅

<script>
    import {
        appUpApi
    } from './api/index.js';
    onLaunch: function() {
            // #ifdef  APP-PLUS
            // 监听  升级配置
            appUpApi().then(res => {
                if (res.data && res.data != '') {
                // 获取当前app的版本号
                    let currentVersion = plus.runtime.version.split('.').join('');
                // 判断当前手机是苹果 还是 ios
                    let currentPlatform = uni.getSystemInfoSync().platform;
                    if (currentPlatform == 'ios') {
                    // 如果服务起的版本大于 当前app的版本  就提示 他 省级
                        if (Number(res.data.ios.versionNo) > currentVersion) {
                            setTimeout(()=>{
                            // 这里的弹框 用的是app 弹框组件  防止  用户点击返回 弹框关闭
                                this.$showModal({
                                    title: '提示',
                                    concent: '检测到有新版本,请前往更新',
                                    delCancel: false,
                                    confirmVal: '确定',
                                    align: 'center'
                                }).then(() => {
                                    plus.runtime.openURL(res.data.ios.downloadUrl);
                                });
                            },500)
                        }
                    } else {
                        if (Number(res.data.android.versionNo) > currentVersion) {
                            setTimeout(()=>{
                                this.$showModal({
                                    title: '提示',
                                    concent: '检测到有新版本,请前往更新',
                                    delCancel: false,
                                    confirmVal: '确定',
                                    align: 'center'
                                }).then(() => {
                                    plus.runtime.openURL(res.data.android.downloadUrl);
                                });
                            },500)
                        }
                    }
                }
            });
            // #endif
        },
</script>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值