리스크관리 / 발송통계 추가

This commit is contained in:
kimre
2022-06-29 17:52:26 +09:00
parent 056ccf20e1
commit 0a2e30b1c2
32 changed files with 2864 additions and 992 deletions

View File

@@ -0,0 +1,29 @@
import httpClient from '@/common/http-client';
// HUBEZ_BO_API - 일별 통계 목록 조회.
const dayList = (params) => {
return httpClient.post('/api/v1/bo/stats/dayList', params, { withCredentials: false });
}
// HUBEZ_BO_API - 월별 통계 목록 조회.
const monthList = (params) => {
return httpClient.post('/api/v1/bo/stats/monthList', params, { withCredentials: false });
}
// HUBEZ_BO_API - [사업자별] 일별 통계 목록 조회.
const bsnmDayList = (params) => {
return httpClient.post('/api/v1/bo/stats/bsnmDayList', params, { withCredentials: false });
}
// HUBEZ_BO_API - [사업자별] 월별 통계 목록 조회.
const bsnmMonthList = (params) => {
return httpClient.post('/api/v1/bo/stats/bsnmMonthList', params, { withCredentials: false });
}
export default {
dayList,
monthList,
bsnmDayList,
bsnmMonthList,
}