From 9683363d11b64dde6d2ecbbcf81b363a14ad4bbb Mon Sep 17 00:00:00 2001 From: JinxChen <2183691628@qq.com> Date: Thu, 22 Jun 2023 17:29:56 +0800 Subject: [PATCH] =?UTF-8?q?update=20-=20=E5=BF=83=E7=90=86=E7=9B=91?= =?UTF-8?q?=E6=B5=8B=E8=AF=A6=E6=83=85=20=20=20=20=20-=20=E4=BB=8A?= =?UTF-8?q?=E5=A4=A9=E8=B6=8B=E5=8A=BF=E9=A5=BC=E7=8A=B6=E5=9B=BE=20=20=20?= =?UTF-8?q?=20=20=20=20=20=20-=20=E4=BF=AE=E6=94=B9=20=E7=99=BE=E5=88=86?= =?UTF-8?q?=E6=AF=94=E6=98=BE=E7=A4=BA=E5=80=BC=EF=BC=8C=E5=8F=96=E5=B0=8F?= =?UTF-8?q?=E6=95=B0=E7=82=B9=E5=90=8E=E9=9D=A2=E4=B8=80=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 9 ++++++++- src/config/models.js | 2 +- src/views/health/psychological/index.vue | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) 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() {