Browse Source

Merge branch 'develop' into test

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

+ 8
- 1
README.md View File

@@ -643,4 +643,11 @@ update
- 增加 首次与 非首次建模提示文字
- 心理监测详情
- 修改 饼状图右边百分比提示
- 修改 温馨提示文字
- 修改 温馨提示文字


## v1.0.80
`2023.7.10`
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.79F'; //版本号
export const VERSION_MODEL = '1.0.80F'; //版本号
export const IMAGE_URL = {
production: 'http://zfb.ssjlai.com/web/',
test: 'http://zfb.ssjlai.com/web/',


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

@@ -990,7 +990,9 @@ export default {
) {
return 0;
}
return ((value / total).toFixed(2)) * 100;
let milValue = value * 1000;
let milTotal = total * 1000;
return Math.round((milValue / milTotal) * 100);
},
// 初始化图表的文字内容
initEchartText() {


Loading…
Cancel
Save