diff --git a/README.md b/README.md index 6d622dd..18bc8a9 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -665,3 +665,18 @@ update update - 心理监测 - 修改 AuthToken 为 accessToken + + +## v1.0.83 +`2023.8.15` +update +- 心理建模进度查询, 心理监测首页 + - 增加 获取 accessToken 接口 + - 增加 url无 accessToken 参数时重新获取 accessToken + - 调整 问卷与佩戴提醒2个小时顺序 + - 修改 心理健康baseUrl,https://dbmq.rzliot.com/heart => https://dbmq.rzliot.com/auth_heart + +## v1.0.84 +`2023.8.21` +update +- 增加 区分心里健康接口正式环境和测试环境 diff --git a/src/config/models.js b/src/config/models.js index 5bb25c1..c894922 100644 --- a/src/config/models.js +++ b/src/config/models.js @@ -1,11 +1,11 @@ /* * @Date: 2021-11-20 10:26:39 * @LastEditors: JinxChen - * @LastEditTime: 2023-08-11 09:50:44 + * @LastEditTime: 2023-08-15 10:55:03 * @FilePath: \TelpoH5FrontendWeb\src\config\models.js * @description: */ -export const VERSION_MODEL = '1.0.82F'; //版本号 +export const VERSION_MODEL = '1.0.84F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', @@ -57,4 +57,7 @@ export const EmotionModel = { title2: '疲劳算法原理', article2: `
设备的疲劳值是生理疲劳和心理疲劳的综合值,主要通过个体日常生活中的心率,心率变异性的变化及运动体力的变化情况来进行科学计算而来。
`, } -}; \ No newline at end of file +}; + +//心理健康相关接口地址 +export const PsyBaseUrl = process.env.NODE_ENV === 'production' ? 'https://dbmq.rzliot.com/auth_heart' : 'https://dbmq.rzliot.com/heart'; \ No newline at end of file diff --git a/src/views/health/psychological-main/index.vue b/src/views/health/psychological-main/index.vue index 7774cb7..177aee1 100644 --- a/src/views/health/psychological-main/index.vue +++ b/src/views/health/psychological-main/index.vue @@ -42,7 +42,9 @@