@@ -1,7 +1,7 @@ | |||||
<!-- | <!-- | ||||
* @Date: 2022-08-17 16:19:13 | * @Date: 2022-08-17 16:19:13 | ||||
* @LastEditors: JinxChen | * @LastEditors: JinxChen | ||||
* @LastEditTime: 2023-10-19 14:25:30 | |||||
* @LastEditTime: 2023-10-27 14:20:10 | |||||
* @FilePath: \TelpoH5FrontendWeb\README.md | * @FilePath: \TelpoH5FrontendWeb\README.md | ||||
* @description: 项目说明 | * @description: 项目说明 | ||||
--> | --> | ||||
@@ -740,3 +740,11 @@ feature | |||||
update | update | ||||
- c1后台设备功耗查看页面 | - c1后台设备功耗查看页面 | ||||
- 修改 数据解析方法 | - 修改 数据解析方法 | ||||
## v1.0.93 | |||||
`2023.10.27` | |||||
fix | |||||
- c1后台设备功耗查看页面 | |||||
- 修复 上报周期无数据时显示不全的问题 |
@@ -5,7 +5,7 @@ | |||||
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js | * @FilePath: \TelpoH5FrontendWeb\src\config\models.js | ||||
* @description: | * @description: | ||||
*/ | */ | ||||
export const VERSION_MODEL = '1.0.92F'; //版本号 | |||||
export const VERSION_MODEL = '1.0.93F'; //版本号 | |||||
export const IMAGE_URL = { | export const IMAGE_URL = { | ||||
production: 'http://zfb.ssjlai.com/web/', | production: 'http://zfb.ssjlai.com/web/', | ||||
test: 'http://zfb.ssjlai.com/web/', | test: 'http://zfb.ssjlai.com/web/', | ||||
@@ -1,7 +1,7 @@ | |||||
<!-- | <!-- | ||||
* @Date: 2023-10-11 15:34:12 | * @Date: 2023-10-11 15:34:12 | ||||
* @LastEditors: JinxChen | * @LastEditors: JinxChen | ||||
* @LastEditTime: 2023-10-13 15:01:00 | |||||
* @LastEditTime: 2023-10-27 14:19:16 | |||||
* @FilePath: \TelpoH5FrontendWeb\src\views\gps-card-frontend\device-setting\index.vue | * @FilePath: \TelpoH5FrontendWeb\src\views\gps-card-frontend\device-setting\index.vue | ||||
* @description: | * @description: | ||||
--> | --> | ||||
@@ -361,7 +361,7 @@ export default { | |||||
if(data) { | if(data) { | ||||
this.settingItems[9].text = `上报周期(${data.uploadinteval}分钟)`; | this.settingItems[9].text = `上报周期(${data.uploadinteval}分钟)`; | ||||
} else { | } else { | ||||
this.settingItems[9].text = '关闭'; | |||||
this.settingItems[9].text = '上报周期(关闭)'; | |||||
} | } | ||||
}) | }) | ||||
}, | }, | ||||