data.tsx 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. export interface ListItem {
  2. title: string;
  3. icon: string;
  4. color?: string;
  5. }
  6. export interface TabItem {
  7. key: string;
  8. name: string;
  9. component: string;
  10. }
  11. export const tags: string[] = [
  12. '很有想法的',
  13. '专注设计',
  14. '川妹子',
  15. '大长腿',
  16. '海纳百川',
  17. '前端开发',
  18. 'vue3',
  19. ];
  20. export const teams: ListItem[] = [
  21. {
  22. icon: 'ri:alipay-fill',
  23. title: '科学搬砖组',
  24. color: '#ff4000',
  25. },
  26. {
  27. icon: 'emojione-monotone:letter-a',
  28. title: '中二少年团',
  29. color: '#7c51b8',
  30. },
  31. {
  32. icon: 'ri:alipay-fill',
  33. title: '高逼格设计',
  34. color: '#00adf7',
  35. },
  36. {
  37. icon: 'jam:codepen-circle',
  38. title: '程序员日常',
  39. color: '#00adf7',
  40. },
  41. {
  42. icon: 'fa:behance-square',
  43. title: '科学搬砖组',
  44. color: '#7c51b8',
  45. },
  46. {
  47. icon: 'jam:codepen-circle',
  48. title: '程序员日常',
  49. color: '#ff4000',
  50. },
  51. ];
  52. export const details: ListItem[] = [
  53. {
  54. icon: 'ic:outline-contacts',
  55. title: '交互专家',
  56. },
  57. {
  58. icon: 'grommet-icons:cluster',
  59. title: '某某某事业群',
  60. },
  61. {
  62. icon: 'bx:bx-home-circle',
  63. title: '福建省厦门市',
  64. },
  65. ];
  66. export const achieveList: TabItem[] = [
  67. {
  68. key: '1',
  69. name: '文章',
  70. component: 'Article',
  71. },
  72. {
  73. key: '2',
  74. name: '应用',
  75. component: 'Application',
  76. },
  77. {
  78. key: '3',
  79. name: '项目',
  80. component: 'Project',
  81. },
  82. ];
  83. export const actions: any[] = [
  84. { icon: 'clarity:star-line', text: '156', color: '#018ffb' },
  85. { icon: 'bx:bxs-like', text: '156', color: '#459ae8' },
  86. { icon: 'bx:bxs-message-dots', text: '2', color: '#42d27d' },
  87. ];
  88. export const articleList = (() => {
  89. const result: any[] = [];
  90. for (let i = 0; i < 4; i++) {
  91. result.push({
  92. title: 'Vben Admin',
  93. description: ['Vben', '设计语言', 'Typescript'],
  94. content: '基于Vue Next, TypeScript, Ant Design实现的一套完整的企业级后台管理系统。',
  95. time: '2020-11-14 11:20',
  96. });
  97. }
  98. return result;
  99. })();
  100. export const applicationList = (() => {
  101. const result: any[] = [];
  102. for (let i = 0; i < 8; i++) {
  103. result.push({
  104. title: 'Vben Admin',
  105. icon: 'emojione-monotone:letter-a',
  106. color: '#1890ff',
  107. active: '100',
  108. new: '1,799',
  109. download: 'bx:bx-download',
  110. });
  111. }
  112. return result;
  113. })();
  114. export const projectList = (() => {
  115. const result: any[] = [];
  116. for (let i = 0; i < 8; i++) {
  117. result.push({
  118. title: 'Vben Admin',
  119. content: '基于Vue Next, TypeScript, Ant Design实现的一套完整的企业级后台管理系统。',
  120. });
  121. }
  122. return result;
  123. })();