appUpdata.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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" activeColor="#49b856" 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. let that = this
  51. uni.getSystemInfo({
  52. success: function (res) {
  53. // console.log(7777,res)
  54. that.appVersion = res.appVersion
  55. that.getVersionNumber();
  56. }
  57. });
  58. // plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
  59. // this.appVersion = wgtinfo.version;
  60. // this.getVersionNumber();
  61. // })
  62. },
  63. // 获取后台版本号 检查是否有新版本
  64. getVersionNumber() {
  65. uni.showLoading({
  66. title: "加载中",
  67. });
  68. let postData = {
  69. "idx": 0,
  70. "sum": 1,
  71. systemConfiguration: {
  72. keyconfig: "supportAppVersion"
  73. }
  74. }
  75. post("/simple/data/fetchDataList/systemConfiguration", postData).then((res) => {
  76. uni.hideLoading();
  77. if (res.status == 200) {
  78. this.supportAppVersion = res.list[0].valueconfig
  79. let ip = uni.getStorageSync('ip')
  80. this.apkUrl = ip + `/getapk/pdazV${this.supportAppVersion}.apk`
  81. console.log(444,this.apkUrl)
  82. if(this.supportAppVersion != this.appVersion){
  83. this.isUpdate = true;
  84. }else{
  85. this.isUpdate = false;
  86. }
  87. }
  88. })
  89. },
  90. // 点击立即升级
  91. nowUpdate() {
  92. this.androidUpdate();
  93. },
  94. // 安卓更新
  95. androidUpdate() {
  96. // 浏览器安装
  97. // plus.runtime.openURL(this.apkUrl, function(res) {
  98. // console.log(res);
  99. // });
  100. const downloadTask = uni.downloadFile({
  101. url: this.apkUrl, //apk下载链接
  102. success: (res) => {
  103. if (res.statusCode !== 200) {
  104. uni.showToast({
  105. title: '下载安装包失败',
  106. icon: 'error',
  107. duration: 2000
  108. });
  109. this.isSchedule = false;
  110. this.isUpdate = false;
  111. return;
  112. }
  113. // 异步请求
  114. if (res.statusCode === 200) {
  115. console.log('更新成功');
  116. // 更新好直接安装,下次启动生效
  117. plus.runtime.install(res.tempFilePath, {
  118. force: true
  119. }, () => {
  120. // uni.showModal({
  121. // title: '安装成功是否重启?',
  122. // success: res => {
  123. // if (res.confirm) {
  124. // //更新完重启app
  125. // plus.runtime.restart();
  126. // }
  127. // }
  128. // });
  129. }, err => {
  130. uni.showToast({
  131. title: '更新失败',
  132. icon: 'error',
  133. duration: 2000
  134. });
  135. })
  136. }
  137. },
  138. fail: (err) => {
  139. console.log('err',err);
  140. },
  141. //接口调用结束 调用成功、失败都会执行
  142. complete: ()=>{
  143. downloadTask.offProgressUpdate();//取消监听加载进度
  144. }
  145. });
  146. //监听下载进度
  147. downloadTask.onProgressUpdate(res => {
  148. this.isSchedule = true;
  149. this.upProgress = res.progress;
  150. if(res.progress >= 100) {
  151. this.isSchedule = false;
  152. this.isUpdate = false;
  153. this.$emit('getUpdate');
  154. }
  155. });
  156. }
  157. },
  158. }
  159. </script>
  160. <style scoped lang="scss">
  161. .upbox {
  162. position: fixed;
  163. z-index: 999;
  164. top: 0;
  165. right: 0;
  166. width: 100%;
  167. height: 100vh;
  168. background-color: rgba(153, 153, 153, 0.75);
  169. display: flex;
  170. align-items: center;
  171. }
  172. .content {
  173. margin: 0 5%;
  174. width: 90%;
  175. text-align: center;
  176. .upimg {
  177. height: 420rpx;
  178. width: 100%;
  179. .img {
  180. height: 100%;
  181. width: 100%;
  182. }
  183. }
  184. .versioninfo {
  185. // padding: 15rpx 0rpx;
  186. border-radius: 25rpx;
  187. background-color: #fff;
  188. .title {
  189. font-size: 36rpx;
  190. // border-bottom: 1px solid #eee;
  191. padding: 20rpx 0;
  192. }
  193. .content{
  194. }
  195. }
  196. .info {
  197. position: relative;
  198. padding-left: 38rpx;
  199. view {
  200. height: 50rpx;
  201. line-height: 50rpx;
  202. }
  203. }
  204. .schedule {
  205. margin: 15rpx;
  206. /deep/.uni-progress-bar {
  207. border-radius: 30rpx;
  208. }
  209. /deep/.uni-progress-inner-bar {
  210. border-radius: 30rpx;
  211. }
  212. }
  213. .btn {
  214. height: 110rpx;
  215. margin-top: 30rpx;
  216. display: flex;
  217. justify-content: space-evenly;
  218. button {
  219. width: 46%;
  220. height: 75rpx;
  221. display: flex;
  222. align-items: center;
  223. justify-content: center;
  224. background: #49b856;
  225. color: #fff;
  226. }
  227. }
  228. }
  229. </style>