From 09f6f3c48ed3b4cda1ec9c64b1c353fec1520eea Mon Sep 17 00:00:00 2001 From: JinxChen <2183691628@qq.com> Date: Sat, 16 Sep 2023 09:26:39 +0800 Subject: [PATCH] =?UTF-8?q?update=20-=20=E4=BF=AE=E6=94=B9=20=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E9=9A=8F=E6=89=8B=E7=B2=BE=E7=81=B5=E7=9A=84=E5=9C=B0?= =?UTF-8?q?=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 ++++++++-- src/config/models.js | 2 +- src/views/health/psychological-main/index.vue | 2 +- src/views/psychological-modeling/index.vue | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 292072a..6b86a5d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -679,4 +679,10 @@ update ## v1.0.84 `2023.8.21` update -- 增加 区分心里健康接口正式环境和测试环境 \ No newline at end of file +- 增加 区分心里健康接口正式环境和测试环境 + + +## v1.0.85 +`2023.9.16` +update +- 修改 返回随手精灵的地址 \ No newline at end of file diff --git a/src/config/models.js b/src/config/models.js index c894922..918b36f 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.84F'; //版本号 +export const VERSION_MODEL = '1.0.85F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', diff --git a/src/views/health/psychological-main/index.vue b/src/views/health/psychological-main/index.vue index 177aee1..17a4531 100644 --- a/src/views/health/psychological-main/index.vue +++ b/src/views/health/psychological-main/index.vue @@ -145,7 +145,7 @@ export default { }, onNavBack() { if(this.isShowLeft) { - window.location.href = `${this.$route.query.fromUrl}/#/device`; + window.location.href = `${this.$route.query.fromUrl}/#/${ this.$route.query.fromMenu || 'device'}`; } else { this.$router.go(-1); } diff --git a/src/views/psychological-modeling/index.vue b/src/views/psychological-modeling/index.vue index 74fba13..55d591e 100644 --- a/src/views/psychological-modeling/index.vue +++ b/src/views/psychological-modeling/index.vue @@ -151,7 +151,7 @@ export default { let fromSsjl = this.$store.getters.fromSsjl === 'true'; if(fromSsjl) { let baseUrl = this.fromUrl; - window.location.href = `${baseUrl}/#/device`; + window.location.href = `${baseUrl}/#/${ this.$route.query.fromMenu || 'device'}`; } else { this.$router.go(-1); }