|
@@ -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) {
|