前后端差不多

This commit is contained in:
2026-04-02 20:53:17 +08:00
parent 5e2b326838
commit 032d9bf383
9 changed files with 433 additions and 132 deletions
+13
View File
@@ -0,0 +1,13 @@
import { api } from './index'
export const scheduleApi = {
getEvents(params = {}) {
return api.post('/schedule/getevents', params)
},
addEvent(data) {
return api.post('/schedule/addevent', data)
},
}