This commit is contained in:
USER-20220102CG\noblelift
2022-10-27 18:58:02 +08:00
parent 7ca4fb98c4
commit 3da7abdd8d
1308 changed files with 122315 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
import request from '@/utils/request'
// 查询缓存详细
export function getCache() {
return request({
url: '/api/redis/get-monitor-info',
method: 'get'
})
}
// 获取模块
export function getKeyDefineList() {
return request({
url: '/api/redis/get-key-define-list',
method: 'get'
})
}
// 获取模块
export function getKeyValueList() {
return request({
url: '/api/redis/get-key-value-list',
method: 'get'
})
}
export function batch(ids) {
return request({
url: 'api/redis/',
method: 'delete',
data: ids
})
}
export default { getCache, getKeyDefineList, batch }