feat: search form

This commit is contained in:
dap
2024-09-24 11:23:02 +08:00
parent c5971e4407
commit c1e58831e1
32 changed files with 924 additions and 49 deletions

View File

@@ -0,0 +1,41 @@
import type { FormSchemaGetter } from '#/adapter';
export const querySchema: FormSchemaGetter = () => [
{
component: 'Input',
componentProps: {
placeholder: '请输入',
},
fieldName: 'fileName',
label: '文件名',
},
{
component: 'Input',
componentProps: {
placeholder: '请输入',
},
fieldName: 'originalName',
label: '原名',
},
{
component: 'Input',
componentProps: {
placeholder: '请输入',
},
fieldName: 'fileSuffix',
label: '拓展名',
},
{
component: 'Input',
componentProps: {
placeholder: '请输入',
},
fieldName: 'service',
label: '服务商',
},
{
component: 'RangePicker',
fieldName: 'createTime',
label: '创建时间',
},
];