appUpdata.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. <template>
  2. <!-- 版本更新提示升级 -->
  3. <view class="upbox" v-if="isUpdate">
  4. <view class="content">
  5. <!-- <view class="upimg">
  6. <image class="img" src="/static/img/updata.png"></image>
  7. </view> -->
  8. <view class="versioninfo">
  9. <view class="title">更新提示</view>
  10. <view class="content">有新版本发布,请及时更新!</view>
  11. <view class="schedule" v-if="isSchedule">
  12. <progress :percent="upProgress" show-info stroke-width="15" />
  13. </view>
  14. <view class="btn">
  15. <button size="mini" :disabled="isSchedule" @click="nowUpdate()">立即更新</button>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. import {
  23. get,
  24. post
  25. } from "../../http/http.js";
  26. export default {
  27. name:"appUpdata",
  28. data() {
  29. return {
  30. isUpdate:false,
  31. // 服务器图片地址
  32. // baseUrl: configSetting.baseUrl,
  33. isSchedule: false,
  34. upProgress: 0,
  35. Version: true,
  36. // manifest 中应用版本名称
  37. appVersion: '',
  38. // manifest 中应用版本号
  39. apkInfo: {},
  40. apkUrl:'',
  41. updateContent: []
  42. };
  43. },
  44. created() {
  45. this.getProperty()
  46. },
  47. methods: {
  48. getProperty(){
  49. // 获取本地应用资源版本号
  50. plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
  51. this.appVersion = wgtinfo.version;
  52. this.getVersionNumber();
  53. })
  54. },
  55. // 获取后台版本号 检查是否有新版本
  56. getVersionNumber() {
  57. let version = this.appVersion;
  58. uni.showLoading({
  59. title: "加载中",
  60. });
  61. let postData = {
  62. "idx": 0,
  63. "sum": 1,
  64. systemConfiguration: {
  65. keyconfig: "supportAppVersion"
  66. }
  67. }
  68. post("/simple/data/fetchDataList/systemConfiguration", postData).then((res) => {
  69. uni.hideLoading();
  70. if (res.status == 200) {
  71. this.supportAppVersion = res.list[0].valueconfig
  72. let ip = uni.getStorageSync('ip')
  73. this.apkUrl = ip + `/getapk/pdazV${this.supportAppVersion}.apk`
  74. console.log(444,this.apkUrl)
  75. if(this.supportAppVersion != version){
  76. this.isUpdate = true;
  77. }else{
  78. this.isUpdate = false;
  79. }
  80. }
  81. })
  82. },
  83. // 点击立即升级查看手机是安卓还是ios
  84. nowUpdate() {
  85. this.androidUpdate();
  86. },
  87. // 安卓更新
  88. androidUpdate() {
  89. // 浏览器安装
  90. // plus.runtime.openURL(this.apkUrl, function(res) {
  91. // console.log(res);
  92. // });
  93. const downloadTask = uni.downloadFile({
  94. url: this.apkUrl, //apk下载链接
  95. success: (res) => {
  96. if (res.statusCode !== 200) {
  97. uni.showToast({
  98. title: '下载安装包失败',
  99. icon: 'error',
  100. duration: 2000
  101. });
  102. this.isSchedule = false;
  103. this.isUpdate = false;
  104. return;
  105. }
  106. // 异步请求
  107. if (res.statusCode === 200) {
  108. console.log('更新成功');
  109. // 更新好直接安装,下次启动生效
  110. plus.runtime.install(res.tempFilePath, {
  111. force: true
  112. }, () => {
  113. // uni.showModal({
  114. // title: '安装成功是否重启?',
  115. // success: res => {
  116. // if (res.confirm) {
  117. // //更新完重启app
  118. // plus.runtime.restart();
  119. // }
  120. // }
  121. // });
  122. }, err => {
  123. uni.showToast({
  124. title: '更新失败',
  125. icon: 'error',
  126. duration: 2000
  127. });
  128. })
  129. }
  130. },
  131. fail: (err) => {
  132. console.log('err',err);
  133. },
  134. //接口调用结束 调用成功、失败都会执行
  135. complete: ()=>{
  136. downloadTask.offProgressUpdate();//取消监听加载进度
  137. }
  138. });
  139. //监听下载进度
  140. downloadTask.onProgressUpdate(res => {
  141. this.isSchedule = true;
  142. this.upProgress = res.progress;
  143. if(res.progress >= 100) {
  144. this.isSchedule = false;
  145. this.isUpdate = false;
  146. this.$emit('getUpdate');
  147. }
  148. });
  149. }
  150. },
  151. }
  152. </script>
  153. <style scoped lang="scss">
  154. .upbox {
  155. position: fixed;
  156. z-index: 999;
  157. top: 0;
  158. right: 0;
  159. width: 100%;
  160. height: 100vh;
  161. background-color: rgba(153, 153, 153, 0.75);
  162. display: flex;
  163. align-items: center;
  164. }
  165. .content {
  166. margin: 0 5%;
  167. width: 90%;
  168. text-align: center;
  169. .upimg {
  170. height: 420rpx;
  171. width: 100%;
  172. .img {
  173. height: 100%;
  174. width: 100%;
  175. }
  176. }
  177. .versioninfo {
  178. // padding: 15rpx 0rpx;
  179. border-radius: 25rpx;
  180. background-color: #fff;
  181. .title {
  182. font-size: 36rpx;
  183. // border-bottom: 1px solid #eee;
  184. padding: 20rpx 0;
  185. }
  186. .content{
  187. }
  188. }
  189. .info {
  190. position: relative;
  191. padding-left: 38rpx;
  192. view {
  193. height: 50rpx;
  194. line-height: 50rpx;
  195. }
  196. }
  197. .schedule {
  198. margin: 15rpx;
  199. /deep/.uni-progress-bar {
  200. border-radius: 30rpx;
  201. }
  202. /deep/.uni-progress-inner-bar {
  203. border-radius: 30rpx;
  204. }
  205. }
  206. .btn {
  207. height: 110rpx;
  208. margin-top: 30rpx;
  209. display: flex;
  210. justify-content: space-evenly;
  211. button {
  212. width: 46%;
  213. height: 75rpx;
  214. display: flex;
  215. align-items: center;
  216. justify-content: center;
  217. background: #49b856;
  218. color: #fff;
  219. }
  220. }
  221. }
  222. </style>