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 }