diff --git a/README.md b/README.md index fabf38c..003d615 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -562,4 +562,11 @@ update - 心理监测首页 - 优化 路由传参非空判断的问题 - 优化 日期传参,当路由存在date参数并且在详情选中有日期时,路由的日期参数变成选中的日期 - - 修改 日历组件的高度样式 \ No newline at end of file + - 修改 日历组件的高度样式 + + +## v1.0.71 +`2023.6.28` +fix +- 心理监测首页 + - 修复 是否显示返回文字判断错误的问题 \ No newline at end of file diff --git a/src/config/models.js b/src/config/models.js index 88f7853..dcc463e 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.70F'; //版本号 +export const VERSION_MODEL = '1.0.71F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', diff --git a/src/views/psychological-modeling/index.vue b/src/views/psychological-modeling/index.vue index 02b9421..af32df5 100644 --- a/src/views/psychological-modeling/index.vue +++ b/src/views/psychological-modeling/index.vue @@ -132,9 +132,9 @@ export default { this.$toast('用户不存在或未绑定手表') } else if (re.response && re.response.initScaleState === 1 && re.response.progress === 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 { - this.info = re.response + this.info = re.response } } else { this.$toast(re.msg)