Browse Source

Merge branch 'develop' into test

test
JinxChen 1 year ago
parent
commit
3bf9fd9495
3 changed files with 10 additions and 3 deletions
  1. +8
    -1
      README.md
  2. +1
    -1
      src/config/models.js
  3. +1
    -1
      src/views/health/psychological/index.vue

+ 8
- 1
README.md View File

@@ -519,4 +519,11 @@ update
- 心理建模进度查询
- 增加 建模中,有2个步骤,如果任一步骤已经完成,则该步骤可以隐藏显示。
- 修复 图表时间格式转换错误的问题
- 增加 Advice字段显示
- 增加 Advice字段显示

## v1.0.65
`2023.6.22`
update
- 心理监测详情
- 今天趋势饼状图
- 修改 百分比显示值,取小数点后面一位

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

@@ -5,7 +5,7 @@
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js
* @description:
*/
export const VERSION_MODEL = '1.0.64F'; //版本号
export const VERSION_MODEL = '1.0.65F'; //版本号
export const IMAGE_URL = {
production: 'http://zfb.ssjlai.com/web/',
test: 'http://zfb.ssjlai.com/web/',


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

@@ -823,7 +823,7 @@ export default {
) {
return 0;
}
return (value / total).toFixed(2) * 100;
return Math.floor((value / total) * 1000) / 10;
},
// 初始化图表的文字内容
initEchartText() {


Loading…
Cancel
Save