wms-antdvue/.svn/pristine/66/6631266bfe3c44d619879631d2c9d39b68ac8fa0.svn-base
2024-11-07 16:33:03 +08:00

11 lines
202 B
Plaintext

import { http } from '@/utils/http/axios';
/**
* @description: 获取服务监控信息
*/
export function getServerInfo() {
return http.request({
url: '/server/info',
method: 'GET'
});
}