11 lines
274 B
JavaScript
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 }
|