| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- <template>
- <uni-popup
- class="upgrade-unipopup"
- ref="popup"
- type="center"
- :animation="false"
- :mask-click="false"
- style="z-index: 999"
- >
- <view class="upgrade-popup">
- <image
- class="header-bg"
- src="../static/common/upgrade_bg.png"
- mode="widthFix"
- ></image>
- <view class="main">
- <view class="version"
- >{{ t("version.newVersion") }}{{ versionName }}</view
- >
- <view class="content" v-if="versionDesc">
- <text class="title">{{ t("version.updateInfo") }}</text>
- <view class="desc" v-html="versionDesc"></view>
- </view>
- <!--下载状态-进度条显示 -->
- <view class="footer" v-if="isStartDownload">
- <view class="progress-view" @click="handleInstallApp">
- <view style="height: 100%">
- <view class="txt">{{ percentText }}</view>
- <view class="progress" :style="setProStyle"></view>
- </view>
- </view>
- </view>
- <!-- 强制更新 -->
- <view class="footer" v-else-if="isForceUpdate">
- <view class="btn upgrade force" @click="handleUpgrade">{{
- t("version.updateNow")
- }}</view>
- </view>
- <!-- 可选择更新 -->
- <view class="footer" v-else>
- <view class="btn close" @click="handleClose">{{
- t("version.updateLater")
- }}</view>
- <view class="btn upgrade" @click="handleUpgrade">{{
- t("version.updateNow")
- }}</view>
- </view>
- </view>
- </view>
- </uni-popup>
- </template>
- <script>
- import { getAppVersion } from "@/api/app.js";
- import { checkVersion, downloadApp, installApp } from "@/utils/upgrade.js";
- // 引用全局变量$t
- import { getCurrentInstance } from "vue";
- export default {
- data() {
- return {
- isForceUpdate: true, //是否强制更新
- versionName: "", //版本名称
- versionDesc: "", //更新说明
- downloadUrl: "", //APP下载链接
- isDownloadFinish: false, //是否下载完成
- hasProgress: false, //是否能显示进度条
- currentPercent: 0, //当前下载百分比
- isStartDownload: false, //是否开始下载
- fileName: "", //下载后app本地路径名称
- t: null, // 全局翻译函数
- };
- },
- computed: {
- //设置进度条样式,实时更新进度位置
- setProStyle() {
- return {
- width: (510 * this.currentPercent) / 100 + "rpx", //510:按钮进度条宽度
- };
- },
- //百分比文字
- percentText() {
- let percent = this.currentPercent;
- if (typeof percent !== "number" || isNaN(percent))
- return this.t("version.downloading"); // 下载中
- if (percent < 100) return `${this.t("version.download")}${percent}%`;
- return this.t("version.install"); // 下载完成
- },
- },
- onBackPress(options) {
- // 禁用返回
- if (options.from == "backbutton") {
- return true;
- }
- },
- mounted() {
- //检测版本
- // #ifdef APP
- this.appCheckVersion();
- // #endif
- const { appContext } = getCurrentInstance();
- const t = appContext.config.globalProperties.$t;
- this.t = t;
- },
- created() {
- uni.$on("upgrade-app", this.bindEmit);
- },
- beforeDestroy() {
- uni.$off("upgrade-app", this.bindEmit);
- },
- methods: {
- async appCheckVersion() {
- console.log("🚀 ~ appCheckVersion ~ appCheckVersion:");
- const { data: remote } = await getAppVersion();
- console.log("checkVersion-remote", remote);
- const up = checkVersion({
- name: remote.appVersion, //最新版本名称
- code: remote.appVersion, //最新版本号
- content: "", //更新内容
- url: remote.url, //下载链接
- forceUpdate: true, //是否强制升级
- });
- console.log("🚀 ~ appCheckVersion ~ up:", up);
- if (up) {
- this.open();
- }
- },
- open() {
- //打开升级弹窗
- console.log("open upgrade popup");
- this.$refs.popup.open();
- },
- bindEmit(e) {
- let { name, content, url, forceUpdate } = e;
- this.isForceUpdate = forceUpdate;
- this.versionName = name;
- this.versionDesc = content;
- this.downloadUrl = url;
- },
- //更新
- handleUpgrade() {
- if (this.downloadUrl) {
- this.isStartDownload = true;
- this.currentPercent = 0; // 初始化进度
- downloadApp(this.downloadUrl, (current, downloadedSize, totalSize) => {
- // 始终显示进度条,无需hasProgress判断
- this.currentPercent = current;
- })
- .then((fileName) => {
- this.isDownloadFinish = true;
- this.fileName = fileName;
- this.currentPercent = 100; // 确保最终显示100%
- if (fileName) {
- // 下载完成后,自动安装
- console.log("🚀 ~ handleUpgrade ~ fileName:", fileName);
- this.handleInstallApp();
- }
- })
- .catch((e) => {
- console.error("🚀 ~ handleUpgrade ~ e:", e);
- this.currentPercent = 0; // 失败时重置
- });
- } else {
- uni.showToast({
- title: this.t("version.downloadLinkNotExist"),
- icon: "none",
- });
- }
- },
- //安装app
- handleInstallApp() {
- //下载完成才能安装,防止下载过程中点击
- if (this.isDownloadFinish && this.fileName) {
- installApp(this.fileName, () => {
- this.$refs.popup.close();
- //安装成功,关闭升级弹窗
- // uni.navigateBack()
- });
- }
- },
- //关闭返回
- handleClose() {
- // uni.navigateBack()
- this.$refs.popup.close();
- },
- },
- };
- </script>
- <style>
- page {
- background: rgba(0, 0, 0, 0.5);
- /**设置窗口背景半透明*/
- }
- </style>
- <style lang="scss" scoped>
- :deep(.upgrade-unipopup) {
- z-index: 9999 !important;
- }
- .upgrade-popup {
- width: 580rpx;
- height: auto;
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- background: #fff;
- border-radius: 20rpx;
- box-sizing: border-box;
- border: 1px solid #eee;
- }
- .header-bg {
- width: 100%;
- margin-top: -112rpx;
- }
- .main {
- padding: 10rpx 30rpx 30rpx;
- box-sizing: border-box;
- .version {
- font-size: 36rpx;
- color: #026df7;
- font-weight: 700;
- width: 100%;
- text-align: center;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- letter-spacing: 1px;
- }
- .content {
- margin-top: 60rpx;
- .title {
- font-size: 28rpx;
- font-weight: 700;
- color: #000000;
- }
- .desc {
- box-sizing: border-box;
- margin-top: 20rpx;
- font-size: 28rpx;
- color: #6a6a6a;
- max-height: 40vh;
- overflow-y: auto;
- }
- }
- .footer {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- flex-shrink: 0;
- margin-top: 100rpx;
- .btn {
- width: 246rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- z-index: 999;
- height: 96rpx;
- box-sizing: border-box;
- font-size: 32rpx;
- border-radius: 10rpx;
- letter-spacing: 2rpx;
- &.force {
- width: 500rpx;
- }
- &.close {
- border: 1px solid #e0e0e0;
- margin-right: 25rpx;
- color: #000;
- }
- &.upgrade {
- background-color: #026df7;
- color: white;
- }
- }
- .progress-view {
- width: 510rpx;
- height: 90rpx;
- display: flex;
- position: relative;
- align-items: center;
- border-radius: 6rpx;
- background-color: #dcdcdc;
- display: flex;
- justify-content: flex-start;
- padding: 0px;
- box-sizing: border-box;
- border: none;
- overflow: hidden;
- &.active {
- background-color: #026df7;
- }
- .progress {
- height: 100%;
- background-color: #026df7;
- padding: 0px;
- box-sizing: border-box;
- border: none;
- border-top-left-radius: 10rpx;
- border-bottom-left-radius: 10rpx;
- transition: width 0.3s ease; // 添加平滑过渡动画
- }
- .txt {
- font-size: 28rpx;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- color: #fff;
- }
- }
- }
- }
- </style>
|