data.ts 738 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. export interface GrowCardItem {
  2. icon: string;
  3. title: string;
  4. value: number;
  5. total: number;
  6. color: string;
  7. action: string;
  8. }
  9. export const growCardList: GrowCardItem[] = [
  10. {
  11. title: '访问数',
  12. icon: 'visit-count|svg',
  13. value: 2000,
  14. total: 120000,
  15. color: 'green',
  16. action: '月',
  17. },
  18. {
  19. title: '成交额',
  20. icon: 'total-sales|svg',
  21. value: 20000,
  22. total: 500000,
  23. color: 'blue',
  24. action: '月',
  25. },
  26. {
  27. title: '下载数',
  28. icon: 'download-count|svg',
  29. value: 8000,
  30. total: 120000,
  31. color: 'orange',
  32. action: '周',
  33. },
  34. {
  35. title: '成交数',
  36. icon: 'transaction|svg',
  37. value: 5000,
  38. total: 50000,
  39. color: 'purple',
  40. action: '年',
  41. },
  42. ];