Showing
2 changed files
with
4 additions
and
4 deletions
| @@ -78,7 +78,7 @@ | @@ -78,7 +78,7 @@ | ||
| 78 | config = { | 78 | config = { |
| 79 | AgentId: values?.AgentId, | 79 | AgentId: values?.AgentId, |
| 80 | ClientID: values?.ClientID, | 80 | ClientID: values?.ClientID, |
| 81 | - Clientsecret: values?.Clientsecret, | 81 | + ClientSecret: values?.ClientSecret, |
| 82 | }; | 82 | }; |
| 83 | } | 83 | } |
| 84 | Reflect.set(values, 'config', config); | 84 | Reflect.set(values, 'config', config); |
| @@ -276,14 +276,14 @@ export const formSchema: FormSchema[] = [ | @@ -276,14 +276,14 @@ export const formSchema: FormSchema[] = [ | ||
| 276 | }, | 276 | }, |
| 277 | }, | 277 | }, |
| 278 | { | 278 | { |
| 279 | - field: 'Clientsecret', | ||
| 280 | - label: 'Clientsecret', | 279 | + field: 'ClientSecret', |
| 280 | + label: 'ClientSecret', | ||
| 281 | component: 'Input', | 281 | component: 'Input', |
| 282 | ifShow: ({ values }) => isDingtalk(Reflect.get(values, 'messageType')), | 282 | ifShow: ({ values }) => isDingtalk(Reflect.get(values, 'messageType')), |
| 283 | required: true, | 283 | required: true, |
| 284 | componentProps: { | 284 | componentProps: { |
| 285 | maxLength: 36, | 285 | maxLength: 36, |
| 286 | - placeholder: '请输入Clientsecret', | 286 | + placeholder: '请输入ClientSecret', |
| 287 | }, | 287 | }, |
| 288 | }, | 288 | }, |
| 289 | { | 289 | { |