23 lines
477 B
TypeScript
23 lines
477 B
TypeScript
import type { FormItem } from '@/components/search-form/types'
|
|
|
|
export const searchFormConfig: FormItem[] = [
|
|
{
|
|
field: 'keyword',
|
|
label: '关键词',
|
|
type: 'input',
|
|
placeholder: '请输入名称',
|
|
span: 6,
|
|
},
|
|
{
|
|
field: 'enabled',
|
|
label: '启用状态',
|
|
type: 'select',
|
|
placeholder: '请选择启用状态',
|
|
options: [
|
|
{ label: '已启用', value: true },
|
|
{ label: '已禁用', value: false },
|
|
],
|
|
span: 6,
|
|
},
|
|
]
|