diff --git a/README.md b/README.md index b37ab0b..a3a608f 100644 --- a/README.md +++ b/README.md @@ -498,4 +498,10 @@ update `2023.6.16` update - 心理建模进度查询 - - 增加 返回按钮 \ No newline at end of file + - 增加 返回按钮 + +## v1.0.62 +`2023.6.17` +feature +- 心理建模进度查询 + - 增加 具体返回url \ No newline at end of file diff --git a/src/config/models.js b/src/config/models.js index 5387502..525f496 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.61F'; //版本号 +export const VERSION_MODEL = '1.0.62F'; //版本号 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 c839257..17ac2fd 100644 --- a/src/views/psychological-modeling/index.vue +++ b/src/views/psychological-modeling/index.vue @@ -96,7 +96,8 @@ export default { }, methods: { onNavBack() { - this.$router.go(-1); + let baseUrl = process.env.NODE_ENV === "production" ? 'https://ai.ssjlai.com/parentweb' : 'https://id.ssjlai.com/parentweb'; + window.location.href = `${baseUrl}/#/device`; }, async init() { let ssjlToken = this.$store.getters.ssjlToken;