init project

This commit is contained in:
ludj
2023-01-16 10:18:16 +08:00
parent e051b71f44
commit 9f65e6a274
900 changed files with 80266 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 }