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
| import { FormSchema } from '@/components/Form';
|
| export const searchList = (() => {
| const result: any[] = [];
| for (let i = 0; i < 6; i++) {
| result.push({
| id: i,
| title: 'Vben Admin',
| description: ['Vben', '设计语言', 'Typescript'],
| content: '基于Vue Next, TypeScript, Ant Design实现的一套完整的企业级后台管理系统。',
| time: '2020-11-14 11:20',
| });
| }
| return result;
| })();
|
| 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 schemas: FormSchema[] = [
| {
| field: 'field1',
| component: 'InputSearch',
| label: '项目名',
| colProps: {
| span: 8,
| },
| componentProps: {
| onChange: (e: any) => {
| console.log(e);
| },
| },
| },
| ];
|
|