Blame view

src/views/dashboard/analysis/data.ts 923 Bytes
Vben authored
1
2
3
4
5
6
7
8
9
10
11
export interface GrowCardItem {
  icon: string;
  title: string;
  value: number;
  total: number;
  color: string;
  action: string;
}

export const growCardList: GrowCardItem[] = [
  {
sanmu authored
12
    title: '订单完成',
Vben authored
13
14
15
16
17
18
19
    icon: 'visit-count|svg',
    value: 2000,
    total: 120000,
    color: 'green',
    action: '月',
  },
  {
sanmu authored
20
    title: '跟单和质检中',
Vben authored
21
22
23
24
25
26
27
    icon: 'total-sales|svg',
    value: 20000,
    total: 500000,
    color: 'blue',
    action: '月',
  },
  {
sanmu authored
28
    title: '利润分析表待审核',
Vben authored
29
30
31
32
33
34
35
    icon: 'download-count|svg',
    value: 8000,
    total: 120000,
    color: 'orange',
    action: '周',
  },
  {
sanmu authored
36
37
38
39
40
41
42
43
44
    title: '项目报告书待审核',
    icon: 'transaction|svg',
    value: 5000,
    total: 50000,
    color: 'purple',
    action: '年',
  },
  {
    title: '订单初始化',
Vben authored
45
46
47
48
49
50
51
    icon: 'transaction|svg',
    value: 5000,
    total: 50000,
    color: 'purple',
    action: '年',
  },
];