소스 검색

Merge branch 'hotfix/mix_excel_show' of eta_server/eta_chart_lib into master

xyxie 11 달 전
부모
커밋
092dc92be9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      utils/config.go

+ 1 - 1
utils/config.go

@@ -133,7 +133,7 @@ func init() {
 
 // FormatMixTableDataShowValue 格式化自定表格显示数据
 func FormatMixTableDataShowValue(x float64) (res string) {
-	res = fmt.Sprint(x)
+	res = strconv.FormatFloat(x, 'f', -1, 64)
 	return
 }