config.ts
2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import { screenLinkOrganizationGetApi } from '/@/api/ruleengine/ruleengineApi';
import { FormSchema } from '/@/components/Form';
import { useI18n } from '/@/hooks/web/useI18n';
import { copyTransFun } from '/@/utils/fnUtils';
import { useComponentRegister } from '/@/components/Form';
import { OrgTreeSelect } from '/@/views/common/OrgTreeSelect';
useComponentRegister('OrgTreeSelect', OrgTreeSelect);
export enum FormFieldsEnum {
NAME = 'name',
ORGANIZATION_ID = 'organizationId',
KEY = 'key',
SECRET = 'secret',
MENU = 'menu',
}
const { t } = useI18n();
export const formSchema: FormSchema[] = [
{
field: FormFieldsEnum.NAME,
label: t('application.config.search.name'),
component: 'Input',
required: true,
componentProps: {
maxLength: 255,
placeholder: t('application.config.search.applicationNamePlaceholder'),
},
},
{
field: FormFieldsEnum.ORGANIZATION_ID,
label: t('application.config.text.organizationName'),
colProps: { span: 24 },
required: true,
component: 'OrgTreeSelect',
},
{
field: FormFieldsEnum.KEY,
label: t('application.config.text.key'),
component: 'Input',
slot: 'key',
componentProps: {
disabled: true,
maxLength: 255,
},
},
{
field: FormFieldsEnum.SECRET,
label: t('application.config.text.secret'),
component: 'Input',
slot: 'secret',
componentProps: {
disabled: true,
maxLength: 255,
},
},
{
label: ' ',
field: FormFieldsEnum.MENU,
slot: 'menu',
component: 'Input',
componentProps: {
maxLength: 255,
},
},
];
export const searchFormSchema: FormSchema[] = [
{
field: FormFieldsEnum.NAME,
label: t('application.config.search.name'),
component: 'Input',
componentProps: {
maxLength: 255,
placeholder: t('application.config.search.applicationNamePlaceholder'),
},
},
{
field: FormFieldsEnum.ORGANIZATION_ID,
label: t('application.config.text.organizationName'),
component: 'ApiTreeSelect',
componentProps: {
placeholder: t('application.config.search.organizationPlaceholder'),
api: async () => {
const data = await screenLinkOrganizationGetApi();
copyTransFun(data as any as any[]);
return data;
},
},
},
];