@@ -1,7 +1,7 @@ | |||||
<!-- | <!-- | ||||
* @Date: 2022-08-17 16:19:13 | * @Date: 2022-08-17 16:19:13 | ||||
* @LastEditors: JinxChen | * @LastEditors: JinxChen | ||||
* @LastEditTime: 2023-06-28 14:16:35 | |||||
* @LastEditTime: 2023-06-28 17:13:53 | |||||
* @FilePath: \TelpoH5FrontendWeb\README.md | * @FilePath: \TelpoH5FrontendWeb\README.md | ||||
* @description: 项目说明 | * @description: 项目说明 | ||||
--> | --> | ||||
@@ -562,4 +562,11 @@ update | |||||
- 心理监测首页 | - 心理监测首页 | ||||
- 优化 路由传参非空判断的问题 | - 优化 路由传参非空判断的问题 | ||||
- 优化 日期传参,当路由存在date参数并且在详情选中有日期时,路由的日期参数变成选中的日期 | - 优化 日期传参,当路由存在date参数并且在详情选中有日期时,路由的日期参数变成选中的日期 | ||||
- 修改 日历组件的高度样式 | |||||
- 修改 日历组件的高度样式 | |||||
## v1.0.71 | |||||
`2023.6.28` | |||||
fix | |||||
- 心理监测首页 | |||||
- 修复 是否显示返回文字判断错误的问题 |
@@ -5,7 +5,7 @@ | |||||
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js | * @FilePath: \TelpoH5FrontendWeb\src\config\models.js | ||||
* @description: | * @description: | ||||
*/ | */ | ||||
export const VERSION_MODEL = '1.0.70F'; //版本号 | |||||
export const VERSION_MODEL = '1.0.71F'; //版本号 | |||||
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/', | ||||
@@ -132,9 +132,9 @@ export default { | |||||
this.$toast('用户不存在或未绑定手表') | this.$toast('用户不存在或未绑定手表') | ||||
} else if (re.response && re.response.initScaleState === 1 && re.response.progress === 1) { | } else if (re.response && re.response.initScaleState === 1 && re.response.progress === 1) { | ||||
// 2023.6.1 需求变更,建模完成直接跳到心理健康汇总页面 | // 2023.6.1 需求变更,建模完成直接跳到心理健康汇总页面 | ||||
this.$router.replace(`/psychologicalMain?uid=${this.uid}&fromUrl=${this.fromUrl}`); | |||||
this.$router.replace(`/psychologicalMain?uid=${this.uid}&fromUrl=${this.fromUrl || ''}`); | |||||
} else { | } else { | ||||
this.info = re.response | |||||
this.info = re.response | |||||
} | } | ||||
} else { | } else { | ||||
this.$toast(re.msg) | this.$toast(re.msg) | ||||