12345678910111213141516171819202122232425262728293031323334353637 |
- import { FormSchema } from '/@/components/Form/index';
- 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);
- },
- },
- },
- ];
|