wms-antdvue/.svn/pristine/bc/bc5efaed518ddacc7b24992e10f9f810f42327e3.svn-base
2024-11-07 16:33:03 +08:00

20 lines
423 B
Plaintext

import { FormSchema } from '@/components/Form/index';
export const schemas: FormSchema[] = [
{
name: 'tableName',
component: 'Input',
label: '数据表名称',
componentProps: {
placeholder: '请输入数据表名称',
},
},
{
name: 'tableComment',
component: 'Input',
label: '数据表描述',
componentProps: {
placeholder: '请输入数据表描述',
},
},
];