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