From 987dddf55af3c0d5e3cb25209fdafa3ea6baec79 Mon Sep 17 00:00:00 2001 From: Charles7c Date: Sun, 13 Apr 2025 16:36:36 +0800 Subject: [PATCH] =?UTF-8?q?refactor(system/client):=20=E7=A7=BB=E9=99=A4?= =?UTF-8?q?=E7=BB=88=E7=AB=AF=E9=83=A8=E5=88=86=E9=85=8D=E7=BD=AE=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/system/type.ts | 12 ++--- src/views/open/app/AppDetailDrawer.vue | 7 ++- .../system/config/client/ClientAddModal.vue | 44 +++---------------- .../config/client/ClientDetailDrawer.vue | 11 +++-- src/views/system/config/client/index.vue | 35 ++++++--------- 5 files changed, 32 insertions(+), 77 deletions(-) diff --git a/src/apis/system/type.ts b/src/apis/system/type.ts index 32a173f..d7b5f87 100644 --- a/src/apis/system/type.ts +++ b/src/apis/system/type.ts @@ -268,10 +268,8 @@ export interface StorageQuery { export interface ClientResp { id: string clientId: string - clientKey: string - clientSecret: string - authType: string clientType: string + authType: string activeTimeout: string timeout: string status: string @@ -285,10 +283,8 @@ export interface ClientResp { export interface ClientDetailResp { id: string clientId: string - clientKey: string - clientSecret: string - authType: string clientType: string + authType: string activeTimeout: string timeout: string status: string @@ -300,10 +296,8 @@ export interface ClientDetailResp { updateUserString: string } export interface ClientQuery { - clientKey: string - clientSecret: string - authType: string[] clientType: string + authType: string[] status: string sort: Array } diff --git a/src/views/open/app/AppDetailDrawer.vue b/src/views/open/app/AppDetailDrawer.vue index 75f992a..14c55ea 100644 --- a/src/views/open/app/AppDetailDrawer.vue +++ b/src/views/open/app/AppDetailDrawer.vue @@ -1,10 +1,13 @@