|
|
|
@ -2,20 +2,23 @@ |
|
|
|
|
<view class="content" v-if="bannerShow"> |
|
|
|
|
<!-- 弹出层 --> |
|
|
|
|
<view class="uni-banner"> |
|
|
|
|
<image src="/static/img/startUpHeader01.png" class="startUpHeaderLogo" /> |
|
|
|
|
<!-- <image src="../static/logo.png" class="startUpHeaderLogo" /> --> |
|
|
|
|
<view class="banner_box"> |
|
|
|
|
<view class="startUpHeaderBox h6">发现新版本</view> |
|
|
|
|
<view class="conter">{{ msg }}</view> |
|
|
|
|
<view class="banner_foot"><button @click="goUpdate(updateApkObj)" class="banner_foot_button">前往升级</button></view> |
|
|
|
|
<view class="banner_foot"><button @click="goUpdate()" class="banner_foot_button">前往升级</button></view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="uni-mask"></view> |
|
|
|
|
</view> |
|
|
|
|
</template> |
|
|
|
|
<script> |
|
|
|
|
import { comparisonVersionHandler } from '@/common/js/tools'; |
|
|
|
|
import { getUpgrade } from '@/common/js/apis'; |
|
|
|
|
|
|
|
|
|
// import { |
|
|
|
|
// getUpgrade |
|
|
|
|
// } from '@/common/js/apis'; |
|
|
|
|
import { |
|
|
|
|
queryVersion |
|
|
|
|
} from '../Utils/Api.js' |
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
@ -28,42 +31,36 @@ export default { |
|
|
|
|
created() { |
|
|
|
|
const appUpdate = uni.getStorageSync('platform'); |
|
|
|
|
// #ifdef APP-PLUS |
|
|
|
|
this.type = appUpdate == 'android' ? 2 : 1; |
|
|
|
|
this.checkUpdate(); |
|
|
|
|
// #endif |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
checkUpdate() { |
|
|
|
|
const self = this, |
|
|
|
|
localAppVersonName = uni.getStorageSync('version'), |
|
|
|
|
localAppVerson = uni.getStorageSync('versionCode'); |
|
|
|
|
|
|
|
|
|
let that = this; |
|
|
|
|
let localAppVersonName = uni.getStorageSync('version'); |
|
|
|
|
// #ifdef APP-PLUS |
|
|
|
|
plus.runtime.getProperty(plus.runtime.appid, function(widgetInfo) { |
|
|
|
|
getUpgrade({ |
|
|
|
|
appType: self.type |
|
|
|
|
}).then(res => { |
|
|
|
|
const { data } = res.data; |
|
|
|
|
if (res.data.code !== '200') return; |
|
|
|
|
// 大版本更新 |
|
|
|
|
if (data.apkVersion && comparisonVersionHandler(localAppVersonName, data.apkVersion.appVersonName)) { |
|
|
|
|
uni.hideTabBar() |
|
|
|
|
self.updateApkObj = data.apkVersion; |
|
|
|
|
self.msg = data.apkVersion.versonLog; |
|
|
|
|
self.bannerShow = true; |
|
|
|
|
return; |
|
|
|
|
// app热更新 |
|
|
|
|
} else if (data.wgtVersion && comparisonVersionHandler(localAppVerson, data.wgtVersion.appVerson)) { |
|
|
|
|
self.downloadWgt(data.wgtVersion.downloadUrl); |
|
|
|
|
let datas = { |
|
|
|
|
termType: "app" |
|
|
|
|
} |
|
|
|
|
queryVersion(datas).then(res => { |
|
|
|
|
if (res.return_code == '000000') { |
|
|
|
|
if (res.return_data.versionType == 1 && that.comparisonVersionHandler(localAppVersonName, |
|
|
|
|
res.return_data.version)) { |
|
|
|
|
that.downloadWgt(res.return_data.fileUrl); |
|
|
|
|
return; |
|
|
|
|
} else { |
|
|
|
|
} |
|
|
|
|
if (res.return_data.versionType == 2 && that.comparisonVersionHandler(localAppVersonName, |
|
|
|
|
res.return_data.version)) { |
|
|
|
|
that.updateApkObj = res.return_data; |
|
|
|
|
that.bannerShow = true; // 显示弹窗 |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
// #endif |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
downloadWgt(updateWgtUrl) { |
|
|
|
|
// 热更新 |
|
|
|
|
// 下载wgt方法 |
|
|
|
@ -72,8 +69,7 @@ export default { |
|
|
|
|
plus.nativeUI.showWaiting('正在更新...'); |
|
|
|
|
plus.downloader |
|
|
|
|
.createDownload( |
|
|
|
|
updateWgtUrl, |
|
|
|
|
{ |
|
|
|
|
updateWgtUrl, { |
|
|
|
|
filename: '_doc/update/' |
|
|
|
|
}, |
|
|
|
|
function(d, status) { |
|
|
|
@ -89,8 +85,9 @@ export default { |
|
|
|
|
// 安装wgt方法 |
|
|
|
|
plus.nativeUI.showWaiting('安装文件...'); |
|
|
|
|
plus.runtime.install( |
|
|
|
|
path, |
|
|
|
|
{ force: true }, |
|
|
|
|
path, { |
|
|
|
|
force: true |
|
|
|
|
}, |
|
|
|
|
function() { |
|
|
|
|
plus.nativeUI.closeWaiting(); |
|
|
|
|
plus.nativeUI.alert('应用资源更新完成!', function() { |
|
|
|
@ -102,14 +99,17 @@ export default { |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
}, |
|
|
|
|
goUpdate(updateApkObj) { |
|
|
|
|
goUpdate() { |
|
|
|
|
if (this.type == 2) { |
|
|
|
|
// 弹出系统等待对话框 |
|
|
|
|
var dtask = plus.downloader.createDownload(updateApkObj.downloadUrl, {}, function(d, status) { |
|
|
|
|
var dtask = plus.downloader.createDownload( |
|
|
|
|
this.updateApkObj.fileUrl, {}, |
|
|
|
|
function(d, status) { |
|
|
|
|
this.bannerShow = false; |
|
|
|
|
// 下载完成 |
|
|
|
|
if (status == 200) { |
|
|
|
|
plus.runtime.install(plus.io.convertLocalFileSystemURL(d.filename), {}, {}, function(error) { |
|
|
|
|
plus.runtime.install(plus.io.convertLocalFileSystemURL(d.filename), {}, {}, function( |
|
|
|
|
error) { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '安装失败', |
|
|
|
|
mask: false, |
|
|
|
@ -138,7 +138,8 @@ export default { |
|
|
|
|
showLoading.setTitle('已连接到服务器'); |
|
|
|
|
break; |
|
|
|
|
case 3: |
|
|
|
|
prg = parseInt((parseFloat(task.downloadedSize) / parseFloat(task.totalSize)) * 100); |
|
|
|
|
prg = parseInt((parseFloat(task.downloadedSize) / parseFloat(task.totalSize)) * |
|
|
|
|
100); |
|
|
|
|
showLoading.setTitle(' 正在下载' + prg + '% '); |
|
|
|
|
break; |
|
|
|
|
case 4: |
|
|
|
@ -158,6 +159,35 @@ export default { |
|
|
|
|
} else if (this.type == 1) { // ios跳转到app store |
|
|
|
|
plus.runtime.openURL(updateApkObj.downloadUrl); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
//判断是否升级 |
|
|
|
|
comparisonVersionHandler(reqV, curV) { |
|
|
|
|
/* 版本号名比较是否需要升级 |
|
|
|
|
curV string :当前最新 |
|
|
|
|
reqV string :之前 |
|
|
|
|
|
|
|
|
|
返回 true 表示需要升级 |
|
|
|
|
*/ |
|
|
|
|
if (curV && reqV) { |
|
|
|
|
curV = String(curV); |
|
|
|
|
reqV = String(reqV); |
|
|
|
|
//将两个版本号拆成数字 |
|
|
|
|
let arr1 = curV.split('.'), //當前 |
|
|
|
|
arr2 = reqV.split('.'); |
|
|
|
|
let minLength = Math.min(arr1.length, arr2.length), |
|
|
|
|
position = 0, |
|
|
|
|
diff = 0; |
|
|
|
|
//依次比较版本号每一位大小,当对比得出结果后跳出循环 |
|
|
|
|
while (position < minLength && ((diff = parseInt(arr1[position]) - parseInt(arr2[position])) == 0)) { |
|
|
|
|
position++; |
|
|
|
|
} |
|
|
|
|
diff = (diff != 0) ? diff : (arr1.length - arr2.length); |
|
|
|
|
//若curV大于reqV,则返回true |
|
|
|
|
return diff > 0; |
|
|
|
|
} else { |
|
|
|
|
//输入为空 |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
@ -240,7 +270,7 @@ export default { |
|
|
|
|
.startUpHeaderBox { |
|
|
|
|
width: 100%; |
|
|
|
|
height: 96rpx; |
|
|
|
|
background-image: url('/static/img/startUpHeader02.png'); |
|
|
|
|
background-image: url('/static/logo.png'); |
|
|
|
|
background-position: left top; |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
background-size: cover; |
|
|
|
|