fix: 修复listCacheKey函数中的URL路径错误

This commit is contained in:
TsMask
2025-07-02 18:49:16 +08:00
parent 93ea37bbc1
commit 8e769a99e9

View File

@@ -29,7 +29,7 @@ export function listCacheName() {
*/
export function listCacheKey(cacheName: string) {
return request({
url: `/monitor/cache//keys`,
url: `/monitor/cache/keys`,
method: 'GET',
params: { cacheName },
});