mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-05-08 11:31:24 +08:00
36 lines
691 B
TypeScript
36 lines
691 B
TypeScript
import type { FormSchemaGetter } from '#/adapter';
|
|
|
|
export const querySchema: FormSchemaGetter = () => [
|
|
{
|
|
component: 'Select',
|
|
componentProps: {
|
|
allowClear: false,
|
|
placeholder: '请选择',
|
|
},
|
|
defaultValue: '',
|
|
fieldName: 'dataName',
|
|
label: '数据源',
|
|
},
|
|
{
|
|
component: 'Input',
|
|
componentProps: {
|
|
placeholder: '请输入',
|
|
},
|
|
fieldName: 'tableName',
|
|
label: '表名称',
|
|
},
|
|
{
|
|
component: 'Input',
|
|
componentProps: {
|
|
placeholder: '请输入',
|
|
},
|
|
fieldName: 'tableComment',
|
|
label: '表描述',
|
|
},
|
|
{
|
|
component: 'RangePicker',
|
|
fieldName: 'createTime',
|
|
label: '创建时间',
|
|
},
|
|
];
|