diff --git a/src/api/system/social/client/index.ts b/src/api/system/social/client/index.ts index da87378e..bf13ab49 100644 --- a/src/api/system/social/client/index.ts +++ b/src/api/system/social/client/index.ts @@ -7,6 +7,7 @@ export interface SocialClientVO { userType: number clientId: string clientSecret: string + agentId: string status: number } diff --git a/src/views/system/social/client/SocialClientForm.vue b/src/views/system/social/client/SocialClientForm.vue index f4d02437..5ca0e158 100644 --- a/src/views/system/social/client/SocialClientForm.vue +++ b/src/views/system/social/client/SocialClientForm.vue @@ -33,10 +33,16 @@ - + - + + + + @@ -74,6 +80,7 @@ const formData = ref({ userType: undefined, clientId: undefined, clientSecret: undefined, + agentId: undefined, status: 0 }) const formRules = reactive({ @@ -139,6 +146,7 @@ const resetForm = () => { userType: undefined, clientId: undefined, clientSecret: undefined, + agentId: undefined, status: 0 } formRef.value?.resetFields()