first commit

This commit is contained in:
Yu Sung
2023-08-04 23:02:15 +09:00
commit c60930a566
83 changed files with 38615 additions and 0 deletions

7
src/api/calculate.js Normal file
View File

@@ -0,0 +1,7 @@
import Vue from 'vue';
async function getCalculateCreator(startDate, endDate) {
return Vue.axios.get('/admin/calculate/creator?startDateStr=' + startDate + '&endDateStr=' + endDate);
}
export { getCalculateCreator }