mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 08:06:38 +09:00
리스크관리 / 발송통계 추가
This commit is contained in:
29
frontend/src/modules/stats/service/statsApi.js
Normal file
29
frontend/src/modules/stats/service/statsApi.js
Normal 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,
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user