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