...
|
...
|
@@ -270,36 +270,36 @@ export const formSchema: FormSchema[] = [ |
270
|
270
|
},
|
271
|
271
|
},
|
272
|
272
|
{
|
273
|
|
- field: 'AgentId',
|
274
|
|
- label: 'AgentId',
|
|
273
|
+ field: 'agentId',
|
|
274
|
+ label: 'agentId',
|
275
|
275
|
component: 'Input',
|
276
|
276
|
required: true,
|
277
|
277
|
ifShow: ({ values }) => isDingtalk(Reflect.get(values, 'messageType')),
|
278
|
278
|
componentProps: {
|
279
|
279
|
maxLength: 36,
|
280
|
|
- placeholder: '请输入AgentId',
|
|
280
|
+ placeholder: '请输入agentId',
|
281
|
281
|
},
|
282
|
282
|
},
|
283
|
283
|
{
|
284
|
|
- field: 'ClientID',
|
285
|
|
- label: 'ClientID',
|
|
284
|
+ field: 'clientId',
|
|
285
|
+ label: 'clientId',
|
286
|
286
|
component: 'Input',
|
287
|
287
|
required: true,
|
288
|
288
|
ifShow: ({ values }) => isDingtalk(Reflect.get(values, 'messageType')),
|
289
|
289
|
componentProps: {
|
290
|
290
|
maxLength: 36,
|
291
|
|
- placeholder: '请输入ClientID',
|
|
291
|
+ placeholder: '请输入clientID',
|
292
|
292
|
},
|
293
|
293
|
},
|
294
|
294
|
{
|
295
|
|
- field: 'ClientSecret',
|
296
|
|
- label: 'ClientSecret',
|
|
295
|
+ field: 'clientSecret',
|
|
296
|
+ label: 'clientSecret',
|
297
|
297
|
component: 'Input',
|
298
|
298
|
ifShow: ({ values }) => isDingtalk(Reflect.get(values, 'messageType')),
|
299
|
299
|
required: true,
|
300
|
300
|
componentProps: {
|
301
|
301
|
maxLength: 36,
|
302
|
|
- placeholder: '请输入ClientSecret',
|
|
302
|
+ placeholder: '请输入clientSecret',
|
303
|
303
|
},
|
304
|
304
|
},
|
305
|
305
|
{
|
...
|
...
|
|