优化代理检查结果展示与地域检测文案

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
WrBug
2026-05-27 00:54:22 +08:00
co-authored by Cursor
parent 727fa7ed58
commit 83a415fb7e
16 changed files with 844 additions and 111 deletions
+23 -1
View File
@@ -625,6 +625,15 @@ export const apiService = {
success: boolean
message: string
responseTime?: number
latency?: number
geoblock?: {
checked: boolean
blocked?: boolean | null
ip?: string | null
country?: string | null
region?: string | null
message?: string | null
} | null
}>>('/system/proxy/check', {}),
/**
@@ -645,7 +654,20 @@ export const apiService = {
message: string
responseTime?: number
}>
}>>('/system/proxy/api-health-check', {})
}>>('/system/proxy/api-health-check', {}),
/**
* 检查交易服务器出口 IP 的地域限制(Polymarket Geoblock
*/
checkGeoblock: () =>
apiClient.post<ApiResponse<{
blocked: boolean
ip: string
country: string
region: string
checkedAt: number
source: string
}>>('/system/proxy/geoblock-check', {})
},
/**