유치채널관리 수정 / 정산관리 추가,수정 / 채널관리 수정 / 고객관리 수정 / 모니터링 추가 / 리스크관리 수정 / 발신번호관리

추가,수정 / 서비스관리 수정 / 발송통계 수정
This commit is contained in:
kimre
2022-07-06 16:00:09 +09:00
parent 7cdea9e61a
commit 3d05b45299
113 changed files with 6261 additions and 5039 deletions

View File

@@ -0,0 +1,16 @@
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,
}