Blame view

src/views/dashboard/analysis/data.ts 1.82 KB
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: '年',
  },
];
柏杨 authored
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102

export const growCardList2: GrowCardItem[] = [
  {
    title: '总销售额',
    icon: 'visit-count|svg',
    value: 2000,
    total: 120000,
    color: 'green',
    action: '年',
  },
  {
    title: '总销售额完成率',
    icon: 'visit-count|svg',
    value: 2000,
    total: 120000,
    color: 'green',
    action: '年',
  },
  {
    title: '每月销售额目标',
    icon: 'visit-count|svg',
    value: 2000,
    total: 120000,
    color: 'green',
    action: '月',
  },
  {
    title: '当月销售额完成率',
    icon: 'visit-count|svg',
    value: 2000,
    total: 120000,
    color: 'green',
    action: '月',
  },
  {
    title: '当月销售额完成率',
    icon: 'visit-count|svg',
    value: 2000,
    total: 120000,
    color: 'green',
    action: '日',
  },
  {
    title: '今日销售额',
    icon: 'visit-count|svg',
    value: 2000,
    total: 120000,
    color: 'green',
    action: '日',
  },
];