wms-elevue/src/views/content/layoutItem/layout/article/querySchemas.ts
2024-09-23 16:55:31 +08:00

31 lines
592 B
TypeScript

import { FormSchema } from '@/components/Form/index';
export const schemas: FormSchema[] = [
{
field: 'title',
component: 'Input',
label: '文章标题',
componentProps: {
placeholder: '请输入文章标题',
},
},
{
field: 'status',
component: 'Select',
label: '文章状态',
componentProps: {
placeholder: '请选择文章状态',
clearable: true,
options: [
{
label: '下架',
value: '1',
},
{
label: '正常',
value: '0',
}
],
},
},
];