Files
sodalive-vuejs-admin/src/api/member_statistics.js
2025-03-15 00:25:45 +09:00

11 lines
274 B
JavaScript

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 }