diff --git a/README.md b/README.md index 0b27fac..575ade1 100644 --- a/README.md +++ b/README.md @@ -519,4 +519,11 @@ update - 心理建模进度查询 - 增加 建模中,有2个步骤,如果任一步骤已经完成,则该步骤可以隐藏显示。 - 修复 图表时间格式转换错误的问题 - - 增加 Advice字段显示 \ No newline at end of file + - 增加 Advice字段显示 + +## v1.0.65 +`2023.6.22` +update +- 心理监测详情 + - 今天趋势饼状图 + - 修改 百分比显示值,取小数点后面一位 \ No newline at end of file diff --git a/src/config/models.js b/src/config/models.js index 033de92..c5ff508 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.64F'; //版本号 +export const VERSION_MODEL = '1.0.65F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', diff --git a/src/views/health/psychological/index.vue b/src/views/health/psychological/index.vue index 49af96a..3e655ad 100644 --- a/src/views/health/psychological/index.vue +++ b/src/views/health/psychological/index.vue @@ -823,7 +823,7 @@ export default { ) { return 0; } - return (value / total).toFixed(2) * 100; + return Math.floor((value / total) * 1000) / 10; }, // 初始化图表的文字内容 initEchartText() {