From 421ca788c937773761f687ec5c20b0486afc5b48 Mon Sep 17 00:00:00 2001 From: chenJinxu <2183691628@qq.com> Date: Wed, 13 Dec 2023 18:34:20 +0800 Subject: [PATCH] =?UTF-8?q?`2023.12.13`=20update=20-=20=E8=AE=BE=E5=A4=87?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E5=88=97=E8=A1=A8=20=20=20=20=20-=20?= =?UTF-8?q?=E4=BC=98=E5=8C=96=20=E5=85=A8=E9=83=A8=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E5=93=8D=E5=BA=94=E5=AE=8C=E6=88=90=E6=89=8D=E5=8A=A0=E8=BD=BD?= =?UTF-8?q?=E5=AE=8C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 +++++++- src/config/models.js | 2 +- src/views/gps-card-frontend/device-setting/index.vue | 7 +++++-- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1d8a57e..dd1d8fe 100644 --- a/README.md +++ b/README.md @@ -865,4 +865,10 @@ update `2023.12.12` update - 心理监测周报列表 - - 增加 无数据文字提示 \ No newline at end of file + - 增加 无数据文字提示 + +## v1.0.110 +`2023.12.13` +update +- 设备设置列表 + - 优化 全部接口响应完成才加载完成 \ No newline at end of file diff --git a/src/config/models.js b/src/config/models.js index d101486..503f39e 100644 --- a/src/config/models.js +++ b/src/config/models.js @@ -5,7 +5,7 @@ * @FilePath: \TelpoH5FrontendWeb\src\config\models.js * @description: */ -export const VERSION_MODEL = '1.0.109F'; //版本号 +export const VERSION_MODEL = '1.0.110F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', diff --git a/src/views/gps-card-frontend/device-setting/index.vue b/src/views/gps-card-frontend/device-setting/index.vue index 90682a1..ffe908f 100644 --- a/src/views/gps-card-frontend/device-setting/index.vue +++ b/src/views/gps-card-frontend/device-setting/index.vue @@ -104,12 +104,15 @@ export default { const promise = Promise.all(allPromise); try { const result = await promise; - if(result) { + const isLoadAllSuccess = result.every(item => { + return item; + }); + if(isLoadAllSuccess) { this.$toast.success({ message: '数据加载完成', duration: 2000 }); - } + }; } catch(error){ console.log('error', error); this.$toast.clear();