appUpdata.vue 4.8 KB

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