diff --git a/ui/src/views/authentication/component/EditModal.vue b/ui/src/views/authentication/component/EditModal.vue index 415c90ad6..8ea3afaa1 100644 --- a/ui/src/views/authentication/component/EditModal.vue +++ b/ui/src/views/authentication/component/EditModal.vue @@ -80,7 +80,7 @@ const currentPlatform = reactive({ const formatFieldName = (key?: any): string => { const fieldNames: { [key: string]: string } = { corp_id: 'Corp ID', - app_key: 'APP Key', + app_key: currentPlatform?.key != 'lark' ? 'APP Key' : 'App ID', app_secret: 'APP Secret', agent_id: 'Agent ID', callback_url: '回调地址' diff --git a/ui/src/views/authentication/component/SCAN.vue b/ui/src/views/authentication/component/SCAN.vue index 29e3fc82e..d0ccead29 100644 --- a/ui/src/views/authentication/component/SCAN.vue +++ b/ui/src/views/authentication/component/SCAN.vue @@ -28,7 +28,7 @@
- {{ formatFieldName(key) }} + {{ formatFieldName(key, item) }}