data.tsx
1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
export interface TabItem {
key: string;
name: string;
component: string;
}
export const achieveList: TabItem[] = [
{
key: '1',
name: '短信发送记录',
component: 'SmsLog',
},
{
key: '2',
name: '邮件发送记录',
component: 'EmailLog',
},
];
export const actions: any[] = [
{ 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' },
];
export const articleList = (() => {
const result: any[] = [];
for (let i = 0; i < 4; i++) {
result.push({
title: 'Vben Admin',
description: ['Vben', '设计语言', 'Typescript'],
content: '基于Vue Next, TypeScript, Ant Design实现的一套完整的企业级后台管理系统。',
time: '2020-11-14 11:20',
});
}
return result;
})();
export const applicationList = (() => {
const result: any[] = [];
for (let i = 0; i < 8; i++) {
result.push({
title: 'Vben Admin',
icon: 'emojione-monotone:letter-a',
color: '#1890ff',
active: '100',
new: '1,799',
download: 'bx:bx-download',
});
}
return result;
})();