更新记录
1.0.0(2024-10-31) 下载此版本
1.0.0
平台兼容性
Vue2 | Vue3 |
---|---|
× | √ |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.7.10 | √ | √ | √ | √ | √ | √ |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
√ | √ | √ | √ |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | √ | √ | √ | √ | √ |
ZCaiMao-VersionUpdate
安装步骤
注:本组件开发依赖sass预处理器
1、点击下载插件并导入HbuildX项目,选择需要导入的项目 2、导入后本插件出现在项目根目录下的uni_modules下 3、页面中引入组件,模版使用组件,拿到组件ref实例,调用showUpdate方法展示
<template>
<view class="content">
<image class="logo" @click="updateRef.showUpdate(versionInfo)" src="/static/logo.png"></image>
<view class="text-area">
<text class="title">{{title}}</text>
</view>
<ZCaiMao-VersionUpdate ref="updateRef" />
</view>
</template>
<script setup>
import {
ref
} from 'vue'
//拿到组件实例,实例暴露一个方法showUpdate
const updateRef = ref()
//版本信息
const versionInfo = {
"force": false,
"url": "https://xxx.xx.com/upload/app-apk/xxx.apk",
"describe": "1、修复BUG<br/>2、新增功能"
}
</script>
参数说明
interface options {
describe: string; //更新内容
updateLink: string; //更新地址
force?: boolean; //强制更新
}
Android跳转到应用市场更新
updateLink设置为应用市场的地址即可,如: market://details?id={这里写你的应用包名}
iOS 跳转到AppStore
updateLink设置为AppStore的地址即可,如: itms-apps://itunes.apple.com/cn/app/hello-uni-app/id1417078253或者https://apps.apple.com/cn/app/id{appid}