Sanakey
2024-09-21 f353bc62423323d3b2bf24934b98cc05176f5583
提交 | 用户 | age
f353bc 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
70 export const achieveList: TabItem[] = [
71   {
72     key: '1',
73     name: '动态',
74     component: 'Dynamic',
75   },
76   {
77     key: '2',
78     name: '资料',
79     component: 'Detail',
80   },
81   {
82     key: '3',
83     name: '商机',
84     component: 'Business',
85   },
86   {
87     key: '4',
88     name: 'Tips',
89     component: 'Tips',
90   },
91   {
92     key: '5',
93     name: '文档',
94     component: 'Document',
95   },
96 ];
97
98 export const actions: any[] = [
99   { icon: 'clarity:star-line', text: '156', color: '#018ffb' },
100   { icon: 'bx:bxs-like', text: '156', color: '#459ae8' },
101   { icon: 'bx:bxs-message-dots', text: '2', color: '#42d27d' },
102 ];
103
104 export const articleList = (() => {
105   const result: any[] = [];
106   for (let i = 0; i < 4; i++) {
107     result.push({
108       title: 'Vben Admin',
109       description: ['Vben', '设计语言', 'Typescript'],
110       content: '基于Vue Next, TypeScript, Ant Design实现的一套完整的企业级后台管理系统。',
111       time: '2020-11-14 11:20',
112     });
113   }
114   return result;
115 })();
116
117 export const applicationList = (() => {
118   const result: any[] = [];
119   for (let i = 0; i < 8; i++) {
120     result.push({
121       title: 'Vben Admin',
122       icon: 'emojione-monotone:letter-a',
123       color: '#1890ff',
124       active: '100',
125       new: '1,799',
126       download: 'bx:bx-download',
127     });
128   }
129   return result;
130 })();
131
132 export const projectList = (() => {
133   const result: any[] = [];
134   for (let i = 0; i < 8; i++) {
135     result.push({
136       color: '#1890ff',
137       title: `测试日程${i + 1}`,
138       content: `测试时间 ${i + 1} - ${i + 2}`,
139     });
140   }
141   return result;
142 })();