Browse Source

Merge branch 'feat' into test

test
JinxChen 1 year ago
parent
commit
3509950542
4 changed files with 11 additions and 5 deletions
  1. +8
    -2
      README.md
  2. +1
    -1
      src/config/models.js
  3. +1
    -1
      src/views/health/psychological-main/index.vue
  4. +1
    -1
      src/views/psychological-modeling/index.vue

+ 8
- 2
README.md View File

@@ -1,7 +1,7 @@
<!-- <!--
* @Date: 2022-08-17 16:19:13 * @Date: 2022-08-17 16:19:13
* @LastEditors: JinxChen * @LastEditors: JinxChen
* @LastEditTime: 2023-08-21 10:29:15
* @LastEditTime: 2023-09-16 09:24:37
* @FilePath: \TelpoH5FrontendWeb\README.md * @FilePath: \TelpoH5FrontendWeb\README.md
* @description: 项目说明 * @description: 项目说明
--> -->
@@ -679,4 +679,10 @@ update
## v1.0.84 ## v1.0.84
`2023.8.21` `2023.8.21`
update update
- 增加 区分心里健康接口正式环境和测试环境
- 增加 区分心里健康接口正式环境和测试环境


## v1.0.85
`2023.9.16`
update
- 修改 返回随手精灵的地址

+ 1
- 1
src/config/models.js View File

@@ -5,7 +5,7 @@
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js * @FilePath: \TelpoH5FrontendWeb\src\config\models.js
* @description: * @description:
*/ */
export const VERSION_MODEL = '1.0.84F'; //版本号
export const VERSION_MODEL = '1.0.85F'; //版本号
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/',


+ 1
- 1
src/views/health/psychological-main/index.vue View File

@@ -145,7 +145,7 @@ export default {
}, },
onNavBack() { onNavBack() {
if(this.isShowLeft) { if(this.isShowLeft) {
window.location.href = `${this.$route.query.fromUrl}/#/device`;
window.location.href = `${this.$route.query.fromUrl}/#/${ this.$route.query.fromMenu || 'device'}`;
} else { } else {
this.$router.go(-1); this.$router.go(-1);
} }


+ 1
- 1
src/views/psychological-modeling/index.vue View File

@@ -151,7 +151,7 @@ export default {
let fromSsjl = this.$store.getters.fromSsjl === 'true'; let fromSsjl = this.$store.getters.fromSsjl === 'true';
if(fromSsjl) { if(fromSsjl) {
let baseUrl = this.fromUrl; let baseUrl = this.fromUrl;
window.location.href = `${baseUrl}/#/device`;
window.location.href = `${baseUrl}/#/${ this.$route.query.fromMenu || 'device'}`;
} else { } else {
this.$router.go(-1); this.$router.go(-1);
} }


Loading…
Cancel
Save