mirror of
https://github.com/YunaiV/ruoyi-vue-pro.git
synced 2026-05-10 16:54:59 +00:00
10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询缓存详细
|
|
export function getCache() {
|
|
return request({
|
|
url: '/infra/redis/get-monitor-info',
|
|
method: 'get'
|
|
})
|
|
}
|