일별 전체 회원 수 페이지 추가

This commit is contained in:
Yu Sung
2025-03-15 00:25:45 +09:00
parent 6e1a7dba06
commit 308a083f32
4 changed files with 239 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
import Vue from 'vue';
async function getStatistics(startDate, endDate, page) {
return Vue.axios.get(
"/admin/member/statistics?startDateStr=" + startDate +
"&endDateStr=" + endDate + "&page=" + (page - 1) + "&size=30"
)
}
export { getStatistics }