mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 09:18:51 +09:00
16 lines
478 B
JavaScript
16 lines
478 B
JavaScript
import httpClient from '@/common/http-client';
|
|
|
|
// HUBEZ_BO_API - 일별 통계 목록 조회.
|
|
const sendList = (params) => {
|
|
return httpClient.post('/api/v1/bo/mntrng/sendList', params, { withCredentials: false });
|
|
}
|
|
|
|
// HUBEZ_BO_API - 월별 통계 목록 조회.
|
|
const liveSendSttus = (params) => {
|
|
return httpClient.post('/api/v1/bo/mntrng/liveSendSttus', params, { withCredentials: false });
|
|
}
|
|
|
|
export default {
|
|
sendList,
|
|
liveSendSttus,
|
|
} |