You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
726 B
44 lines
726 B
2 years ago
|
export interface GrowCardItem {
|
||
|
icon: string
|
||
|
title: string
|
||
|
value: number
|
||
|
total: number
|
||
|
color: string
|
||
|
action: string
|
||
|
}
|
||
|
|
||
|
export const growCardList: GrowCardItem[] = [
|
||
|
{
|
||
|
title: '访问数',
|
||
|
icon: 'visit-count|svg',
|
||
|
value: 2000,
|
||
|
total: 120000,
|
||
|
color: 'green',
|
||
|
action: '月'
|
||
|
},
|
||
|
{
|
||
|
title: '成交额',
|
||
|
icon: 'total-sales|svg',
|
||
|
value: 20000,
|
||
|
total: 500000,
|
||
|
color: 'blue',
|
||
|
action: '月'
|
||
|
},
|
||
|
{
|
||
|
title: '下载数',
|
||
|
icon: 'download-count|svg',
|
||
|
value: 8000,
|
||
|
total: 120000,
|
||
|
color: 'orange',
|
||
|
action: '周'
|
||
|
},
|
||
|
{
|
||
|
title: '成交数',
|
||
|
icon: 'transaction|svg',
|
||
|
value: 5000,
|
||
|
total: 50000,
|
||
|
color: 'purple',
|
||
|
action: '年'
|
||
|
}
|
||
|
]
|