Browse Source

fix

- 修复 抑郁没有正确转化成忧郁的问题
test
chenJinxu 6 months ago
parent
commit
ddfcdbd6be
2 changed files with 11 additions and 3 deletions
  1. +9
    -1
      README.md
  2. +2
    -2
      src/config/models.js

+ 9
- 1
README.md View File

@@ -848,7 +848,8 @@ update

#是零川或者小台风,跳转话费查询页面
#否则跳转错误页面
- 增加 一个物联网卡的错误页面

- 增加 一个物联网卡的错误页面

## v1.0.88

@@ -1130,3 +1131,10 @@ update

- 周报详情
- 增加 是否显示返回按钮

## v1.0.122

`2024.4.29`
fix

- 修复 抑郁没有正确转化成忧郁的问题

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

@@ -8,7 +8,7 @@
import store from "@/store";
// 情绪模型
const appTypeList = ['1'];
export const VERSION_MODEL = '1.0.121F'; //版本号
export const VERSION_MODEL = '1.0.122F'; //版本号
export const IMAGE_URL = {
production: 'http://zfb.ssjlai.com/web/',
test: 'http://zfb.ssjlai.com/web/',
@@ -29,7 +29,7 @@ export const BaiduStatisticsModel = {
};

// 焦虑文字
export const anxietyText = appTypeList.indexOf(store.getters.appType) >-1 ? `忧郁`: `郁`
export const anxietyText = appTypeList.indexOf(store.getters.appType) >-1 ? `忧郁`: `郁`
export const EmotionModel = {
// 抑郁
depression: {


Loading…
Cancel
Save