From a624db04e93455b1af5d0b316771361b77f5960b Mon Sep 17 00:00:00 2001 From: puhui999 Date: Thu, 26 Oct 2023 17:00:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=89=E6=96=B9=E5=BA=94=E7=94=A8=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E6=8E=88=E6=9D=83=E6=96=B9=E7=9A=84=E7=BD=91=E9=A1=B5?= =?UTF-8?q?=E5=BA=94=E7=94=A8=20agentId=20=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/social/client/index.ts | 1 + src/views/system/social/client/SocialClientForm.vue | 12 ++++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) 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()