123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- export interface ListItem {
- title: string;
- icon: string;
- color?: string;
- }
- export interface TabItem {
- key: string;
- name: string;
- component: string;
- }
- export const tags: string[] = [
- '很有想法的',
- '专注设计',
- '川妹子',
- '大长腿',
- '海纳百川',
- '前端开发',
- 'vue3',
- ];
- <span class="iconify" data-icon="jam:codepen-circle" data-inline="false"></span>;
- export const teams: ListItem[] = [
- {
- icon: 'ri:alipay-fill',
- title: '科学搬砖组',
- color: '#ff4000',
- },
- {
- icon: 'emojione-monotone:letter-a',
- title: '中二少年团',
- color: '#7c51b8',
- },
- {
- icon: 'ri:alipay-fill',
- title: '高逼格设计',
- color: '#00adf7',
- },
- {
- icon: 'jam:codepen-circle',
- title: '程序员日常',
- color: '#00adf7',
- },
- {
- icon: 'fa:behance-square',
- title: '科学搬砖组',
- color: '#7c51b8',
- },
- {
- icon: 'jam:codepen-circle',
- title: '程序员日常',
- color: '#ff4000',
- },
- ];
- export const details: ListItem[] = [
- {
- icon: 'ic:outline-contacts',
- title: '交互专家',
- },
- {
- icon: 'grommet-icons:cluster',
- title: '某某某事业群',
- },
- {
- icon: 'bx:bx-home-circle',
- title: '福建省厦门市',
- },
- ];
- export const achieveList: TabItem[] = [
- {
- key: '1',
- name: '文章',
- component: 'Article',
- },
- {
- key: '2',
- name: '应用',
- component: 'Application',
- },
- {
- key: '3',
- name: '项目',
- component: 'Project',
- },
- ];
- 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;
- })();
- export const projectList = (() => {
- const result: any[] = [];
- for (let i = 0; i < 8; i++) {
- result.push({
- title: 'Vben Admin',
- content: '基于Vue Next, TypeScript, Ant Design实现的一套完整的企业级后台管理系统。',
- });
- }
- return result;
- })();
|