wms-naivevue/src/views/content/article/querySchemas.ts

31 lines
595 B
TypeScript

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