OpenApi.data.ts
7.7 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
import { BasicColumn } from '/@/components/Table';
import { FormSchema } from '/@/components/Table';
import { rules } from '/@/utils/helper/validator';
import { render } from '/@/utils/common/renderUtils';
import { JVxeTypes, JVxeColumn } from '/@/components/jeecg/JVxeTable/types';
import { getWeekMonthQuarterYear } from '/@/utils';
//列表数据
export const columns: BasicColumn[] = [
{
title: '接口名称',
align: 'center',
dataIndex: 'name',
},
{
title: '请求方法',
align: 'center',
dataIndex: 'requestMethod',
},
{
title: '接口地址',
align: 'center',
dataIndex: 'requestUrl',
},
{
title: 'IP 黑名单',
align: 'center',
dataIndex: 'blackList',
},
{
title: '状态',
align: 'center',
dataIndex: 'status',
},
{
title: '创建人',
align: 'center',
dataIndex: 'createBy',
},
{
title: '创建时间',
align: 'center',
dataIndex: 'createTime',
},
];
//查询数据
export const searchFormSchema: FormSchema[] = [
{
label: '接口名称',
field: 'name',
component: 'JInput',
},
{
label: '创建人',
field: 'createBy',
component: 'JInput',
},
];
//表单数据
export const formSchema: FormSchema[] = [
{
label: '接口名称',
field: 'name',
component: 'Input',
dynamicRules: ({ model, schema }) => {
return [{ required: true, message: '请输入接口名称!' }];
},
},
{
label: '请求方法',
field: 'requestMethod',
component: 'JSearchSelect',
componentProps: {
dictOptions: [
{
text: 'POST',
value: 'POST',
},
{
text: 'GET',
value: 'GET',
},
{
text: 'HEAD',
value: 'HEAD',
},
{
text: 'PUT',
value: 'PUT',
},
{
text: 'PATCH',
value: 'PATCH',
},
{
text: 'DELETE',
value: 'DELETE',
},
{
text: 'OPTIONS',
value: 'OPTIONS',
},
{
text: 'TRACE',
value: 'TRACE',
},
],
},
dynamicRules: ({ model, schema }) => {
return [{ required: true, message: '请输入请求方法!' }];
},
},
{
label: '接口地址',
field: 'requestUrl',
component: 'Input',
dynamicDisabled: true,
},
{
label: 'IP 黑名单',
field: 'blackList',
component: 'Input',
},
{
label: '请求体内容',
component: 'Input',
field: 'body',
},
{
label: '原始地址',
field: 'originUrl',
component: 'Input',
},
{
label: '删除标识',
field: 'delFlag',
component: 'Input',
defaultValue: 0,
show: false,
},
{
label: '状态',
field: 'status',
component: 'Input',
defaultValue: '1',
show: false,
},
// TODO 主键隐藏字段,目前写死为ID
{
label: '',
field: 'id',
component: 'Input',
show: false,
},
];
//子表单数据
//子表列表数据
export const openApiHeaderColumns: BasicColumn[] = [
// {
// title: 'apiId',
// align:"center",
// dataIndex: 'apiId'
// },
{
title: '请求头Key',
align: 'center',
dataIndex: 'headerKey',
},
{
title: '是否必填',
align: 'center',
dataIndex: 'required_dictText',
},
{
title: '默认值',
align: 'center',
dataIndex: 'defaultValue',
},
{
title: '备注',
align: 'center',
dataIndex: 'note',
},
];
//子表列表数据
export const openApiParamColumns: BasicColumn[] = [
// {
// title: 'apiId',
// align:"center",
// dataIndex: 'apiId'
// },
{
title: '参数Key',
align: 'center',
dataIndex: 'paramKey',
},
{
title: '是否必填',
align: 'center',
dataIndex: 'required_dictText',
},
{
title: '默认值',
align: 'center',
dataIndex: 'defaultValue',
},
{
title: '备注',
align: 'center',
dataIndex: 'note',
},
];
//子表表格配置
export const openApiHeaderJVxeColumns: JVxeColumn[] = [
// {
// title: 'apiId',
// key: 'apiId',
// type: JVxeTypes.input,
// width:"200px",
// placeholder: '请输入${title}',
// defaultValue:'',
// },
{
title: '请求头Key',
key: 'headerKey',
type: JVxeTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: '',
},
{
title: '是否必填',
key: 'required',
type: JVxeTypes.checkbox,
options: [],
// dictCode:"yn",
width: '100px',
placeholder: '请输入${title}',
defaultValue: '',
customValue: ['1', '0'],
},
{
title: '默认值',
key: 'defaultValue',
type: JVxeTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: '',
},
{
title: '备注',
key: 'note',
type: JVxeTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: '',
},
];
export const openApiParamJVxeColumns: JVxeColumn[] = [
// {
// title: 'apiId',
// key: 'apiId',
// type: JVxeTypes.input,
// width:"200px",
// placeholder: '请输入${title}',
// defaultValue:'',
// },
{
title: '参数Key',
key: 'paramKey',
type: JVxeTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: '',
},
{
title: '是否必填',
key: 'required',
type: JVxeTypes.checkbox,
options: [],
// dictCode:"yn",
width: '100px',
placeholder: '请输入${title}',
defaultValue: '',
customValue: ['1', '0'],
},
{
title: '默认值',
key: 'defaultValue',
type: JVxeTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: '',
},
{
title: '备注',
key: 'note',
type: JVxeTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: '',
},
];
// 高级查询数据
export const superQuerySchema = {
name: { title: '接口名称', order: 0, view: 'text', type: 'string' },
requestMethod: { title: '请求方法', order: 1, view: 'list', type: 'string', dictCode: '' },
requestUrl: { title: '接口地址', order: 2, view: 'text', type: 'string' },
blackList: { title: 'IP 黑名单', order: 3, view: 'text', type: 'string' },
status: { title: '状态', order: 5, view: 'number', type: 'number' },
createBy: { title: '创建人', order: 6, view: 'text', type: 'string' },
createTime: { title: '创建时间', order: 7, view: 'datetime', type: 'string' },
//子表高级查询
openApiHeader: {
title: '请求头表',
view: 'table',
fields: {
// apiId: {title: 'apiId',order: 0,view: 'text', type: 'string',},
headerKey: { title: '请求头Key', order: 1, view: 'text', type: 'string' },
required: { title: '是否必填', order: 2, view: 'number', type: 'number', dictCode: 'yn' },
defaultValue: { title: '默认值', order: 3, view: 'text', type: 'string' },
note: { title: '备注', order: 4, view: 'text', type: 'string' },
},
},
openApiParam: {
title: '请求参数部分',
view: 'table',
fields: {
// apiId: {title: 'apiId',order: 0,view: 'text', type: 'string',},
paramKey: { title: '参数Key', order: 1, view: 'text', type: 'string' },
required: { title: '是否必填', order: 2, view: 'number', type: 'number', dictCode: 'yn' },
defaultValue: { title: '默认值', order: 3, view: 'text', type: 'string' },
note: { title: '备注', order: 4, view: 'text', type: 'string' },
},
},
};
/**
* 流程表单调用这个方法获取formSchema
* @param param
*/
export function getBpmFormSchema(_formData): FormSchema[] {
// 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
return formSchema;
}