From 8bb64e4992fd76059465313174cb78d9a865bb5a Mon Sep 17 00:00:00 2001 From: JinxChen <2183691628@qq.com> Date: Wed, 28 Jun 2023 17:14:12 +0800 Subject: [PATCH] =?UTF-8?q?fix=20-=20=E5=BF=83=E7=90=86=E7=9B=91=E6=B5=8B?= =?UTF-8?q?=E9=A6=96=E9=A1=B5=20=20=20=20=20-=20=E4=BF=AE=E5=A4=8D=20?= =?UTF-8?q?=E6=98=AF=E5=90=A6=E6=98=BE=E7=A4=BA=E8=BF=94=E5=9B=9E=E6=96=87?= =?UTF-8?q?=E5=AD=97=E5=88=A4=E6=96=AD=E9=94=99=E8=AF=AF=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 11 +++++++++-- src/config/models.js | 2 +- src/views/psychological-modeling/index.vue | 4 ++-- 3 files changed, 12 insertions(+), 5 deletions(-) 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)