wms-antdvue/.svn/pristine/77/77dbb680f37b4c33e61acf87cb7f270d1a45849d.svn-base
2024-11-07 16:33:03 +08:00

12 lines
214 B
Plaintext

import { http } from '@/utils/http/axios';
/**
* @description: 缓存监控信息
*/
export function getCacheInfo(params?) {
return http.request({
url: '/cache/info',
method: 'GET',
params,
});
}