This commit is contained in:
dute7liang
2023-12-19 22:24:39 +08:00
commit 943c4dd7cb
326 changed files with 29044 additions and 0 deletions

9
src/api/monitor/cache.js Normal file
View File

@@ -0,0 +1,9 @@
import request from '@/utils/request'
// 查询缓存详细
export function getCache() {
return request({
url: '/monitor/cache',
method: 'get'
})
}