Selaa lähdekoodia

自动检测更新

seimin 2 vuotta sitten
vanhempi
commit
c12710696d
4 muutettua tiedostoa jossa 86 lisäystä ja 7 poistoa
  1. 1 1
      main.js
  2. 2 2
      manifest.json
  3. 81 2
      pages/index/index.vue
  4. 2 2
      pages/login/login.vue

+ 1 - 1
main.js

@@ -12,7 +12,7 @@ import {
12 12
 Vue.prototype.$request = request
13 13
 
14 14
 Vue.config.productionTip = false
15
-console.info('v1.0.2')
15
+console.info('v1.0.4')
16 16
 
17 17
 App.mpType = 'app'
18 18
 

+ 2 - 2
manifest.json

@@ -2,8 +2,8 @@
2 2
     "name" : "医疗服务中心转运系统",
3 3
     "appid" : "__UNI__FEB1B1E",
4 4
     "description" : "医疗服务中心转运系统",
5
-    "versionName" : "1.0.2",
6
-    "versionCode" : 102,
5
+    "versionName" : "1.0.4",
6
+    "versionCode" : 104,
7 7
     "transformPx" : false,
8 8
     "app-plus" : {
9 9
         /* 5+App特有相关 */

+ 81 - 2
pages/index/index.vue

@@ -88,6 +88,7 @@
88 88
 </template>
89 89
 
90 90
 <script>
91
+  import config from "../../request/config.js";
91 92
   import {
92 93
     backPress,
93 94
   } from '../../utils/index.js';
@@ -218,11 +219,89 @@
218 219
           this.querySpecimenButtonResponse(values[5]);
219 220
           this.queryNurseDeptSwitchTipResponse(values[6]);
220 221
           if (this.isShowSeiminModel) {
221
-            this.showDeptModel();
222
-            this.changeSeiminModel(false);
222
+            // 检测更新
223
+            this.checkUpdate();
223 224
           }
224 225
         });
225 226
       },
227
+      // 检测更新
228
+      checkUpdate() {
229
+        uni.showLoading({
230
+          mask: true,
231
+          title: '加载中'
232
+        })
233
+        let postData = {
234
+          "idx": 0,
235
+          "sum": 1,
236
+          "systemConfiguration": {
237
+            "keyconfig": "pdaVersion"
238
+          }
239
+        };
240
+        reqFetchDataList('simple/data', 'systemConfiguration', postData)
241
+          .then((data) => {
242
+            uni.hideLoading();
243
+            if (data.status == 200) {
244
+              const version = data.list[0].valueconfig;
245
+              // #ifdef APP-PLUS
246
+              plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
247
+                console.log(wgtinfo.version); //应用版本号
248
+                if (wgtinfo.version === version) {
249
+                  this.showDeptModel();
250
+                  this.changeSeiminModel(false);
251
+                } else {
252
+                  this.downloadUrl(`${config.pdaDownloadUrl}/pda-v${version}.apk`);
253
+                }
254
+              })
255
+              // #endif
256
+            } else {
257
+              this.$refs.seiminModel.show({
258
+                skin: "toast",
259
+                icon: "error",
260
+                content: data.error || "获取版本失败",
261
+              });
262
+            }
263
+          });
264
+      },
265
+      // 下载更新
266
+      downloadUrl(Url = '') {
267
+        uni.showLoading({
268
+          title: '更新中……',
269
+          mask: true,
270
+        })
271
+        const downloadTask = uni.downloadFile({ //执行下载
272
+          url: Url, //下载地址
273
+          timeout: 1000 * 30, //30秒超时时间
274
+          success: downloadResult => { //下载成功
275
+            console.log(downloadResult)
276
+            uni.hideLoading();
277
+            if (downloadResult.statusCode == 200) {
278
+              plus.runtime.install( //安装软件
279
+                downloadResult.tempFilePath, {
280
+                  force: true
281
+                },
282
+                function(res) {
283
+                  plus.runtime.restart();
284
+                }
285
+              );
286
+            } else {
287
+              this.$refs.seiminModel.show({
288
+                skin: "toast",
289
+                icon: "error",
290
+                content: "下载失败",
291
+              });
292
+            }
293
+          },
294
+          fail: err => {
295
+            uni.hideLoading();
296
+            this.$refs.seiminModel.show({
297
+              skin: "toast",
298
+              icon: "error",
299
+              content: "更新失败",
300
+            });
301
+            console.log(err)
302
+          },
303
+        });
304
+      },
226 305
       // 查询急标和普标数量
227 306
       querySpecimenNumRequest() {
228 307
         if (this.openSpecimen) {

+ 2 - 2
pages/login/login.vue

@@ -113,7 +113,7 @@
113 113
           password,
114 114
           type: "APP",
115 115
         };
116
-        
116
+
117 117
         changeIP(ip);
118 118
 
119 119
         this.vxLogin(postData).then((res) => {
@@ -148,7 +148,7 @@
148 148
             }
149 149
             // 跳转到首页(isShowSeiminModel,是否显示切换科室弹窗)
150 150
             this.changeSeiminModel(true);
151
-            uni.navigateTo({
151
+            uni.reLaunch({
152 152
               url: "/pages/index/index",
153 153
             });
154 154
           } else {