Merge branch 'feature/1.7-cxx' into 'main'

Feature/1.7 cxx

See merge request apipark/APIPark!314
This commit is contained in:
lichunxian
2025-04-14 13:37:01 +08:00
2 changed files with 2 additions and 2 deletions
@@ -100,7 +100,7 @@ export const SYSTEM_TABLE_COLUMNS: PageProColumns<SystemTableListItem>[] = [
{
title: '类型',
dataIndex: 'service_kind',
width: 100,
width: 120,
ellipsis: true
},
{
@@ -142,7 +142,7 @@ const IntegrationAIContainer = ({
* 获取 API Key 列表
*/
const getKeysList = () => {
fetchData<BasicResponse<null>>(type === 'global' ? 'simple/system/apikeys' : 'my/apikeys', {
fetchData<BasicResponse<null>>(type === 'global' ? 'simple/system/apikeys' : `my/apikeys/${serviceId}`, {
method: 'GET'
})
.then((response) => {