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