You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
535 B
22 lines
535 B
import { useLocalization } from '/@/hooks/abp/useLocalization';
|
|
import { FormSchema } from '/@/components/Form';
|
|
|
|
const { L } = useLocalization(['AbpFeatureManagement', 'AbpUi']);
|
|
|
|
export function getSearchFormSchemas():FormSchema[] {
|
|
return [
|
|
{
|
|
field: 'groupName',
|
|
component: 'ApiSelect',
|
|
label: L('DisplayName:GroupName'),
|
|
colProps: { span: 6 },
|
|
slot: 'groupName',
|
|
},
|
|
{
|
|
field: 'filter',
|
|
component: 'Input',
|
|
label: L('Search'),
|
|
colProps: { span: 18 },
|
|
},
|
|
];
|
|
}
|
|
|