import { BasicColumn } from '@/components/Table'; import { FormSchema } from '@/components/Form'; export const formSchemas: FormSchema[] = [ { field: 'title', label: '标题', component: 'Input', componentProps: { placeholder: '请输入', }, }, ]; export const columns: BasicColumn[] = [ { title: '标题', dataIndex: 'title', }, { title: '类型', dataIndex: 'type', }, { title: '发布日期', dataIndex: 'createTime', }, { title: '操作人', dataIndex: 'handler', }, ];