wms-antdvue/.svn/pristine/15/1544092493bbcc41a085a2b5770e4094ecd285df.svn-base
2024-11-07 16:33:03 +08:00

35 lines
668 B
Plaintext

import { FormSchema } from '@/components/Form/index';
export const schemas: FormSchema[] = [
{
name: 'title',
component: 'Input',
label: '模板名称',
componentProps: {
placeholder: '请输入模板名称',
},
},
{
name: 'type',
component: 'Select',
label: '模板类型',
componentProps: {
placeholder: '请选择模板类型',
clearable: true,
options: [
{
label: '阿里云',
value: '1',
},
{
label: '腾讯云',
value: '2',
},
{
label: '华为云',
value: '3',
},
],
},
},
];