gaoluyang
3 天以前 51538d466085b6544c35fcf9b9d11de572d74ada
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export interface StatisticCardProps {
  /** 标题 */
  title: string;
  /** 提示信息 */
  tooltip?: string;
  /** 前缀 */
  prefix?: string;
  /** 数值 */
  value?: number;
  /** 小数位数 */
  decimals?: number;
  /** 环比百分比 */
  percent?: number | string;
  /** 环比标签文本 */
  percentLabel?: string;
}