diff --git a/ruoyi-ui/src/api/benyi/schoolcalendar.js b/ruoyi-ui/src/api/benyi/schoolcalendar.js new file mode 100644 index 000000000..f93534fbc --- /dev/null +++ b/ruoyi-ui/src/api/benyi/schoolcalendar.js @@ -0,0 +1,53 @@ +import request from '@/utils/request' + +// 查询园历管理列表 +export function listSchoolcalendar(query) { + return request({ + url: '/benyi/schoolcalendar/list', + method: 'get', + params: query + }) +} + +// 查询园历管理详细 +export function getSchoolcalendar(id) { + return request({ + url: '/benyi/schoolcalendar/' + id, + method: 'get' + }) +} + +// 新增园历管理 +export function addSchoolcalendar(data) { + return request({ + url: '/benyi/schoolcalendar', + method: 'post', + data: data + }) +} + +// 修改园历管理 +export function updateSchoolcalendar(data) { + return request({ + url: '/benyi/schoolcalendar', + method: 'put', + data: data + }) +} + +// 删除园历管理 +export function delSchoolcalendar(id) { + return request({ + url: '/benyi/schoolcalendar/' + id, + method: 'delete' + }) +} + +// 导出园历管理 +export function exportSchoolcalendar(query) { + return request({ + url: '/benyi/schoolcalendar/export', + method: 'get', + params: query + }) +} \ No newline at end of file diff --git a/ruoyi-ui/src/views/benyi/schoolcalendar/index.vue b/ruoyi-ui/src/views/benyi/schoolcalendar/index.vue new file mode 100644 index 000000000..20f3a22a1 --- /dev/null +++ b/ruoyi-ui/src/views/benyi/schoolcalendar/index.vue @@ -0,0 +1,418 @@ + + + \ No newline at end of file