周计划
This commit is contained in:
53
ruoyi-ui/src/api/benyi/planweek.js
Normal file
53
ruoyi-ui/src/api/benyi/planweek.js
Normal file
@ -0,0 +1,53 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询周计划(家长和教育部门)列表
|
||||
export function listPlanweek(query) {
|
||||
return request({
|
||||
url: '/benyi/planweek/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询周计划(家长和教育部门)详细
|
||||
export function getPlanweek(id) {
|
||||
return request({
|
||||
url: '/benyi/planweek/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增周计划(家长和教育部门)
|
||||
export function addPlanweek(data) {
|
||||
return request({
|
||||
url: '/benyi/planweek',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改周计划(家长和教育部门)
|
||||
export function updatePlanweek(data) {
|
||||
return request({
|
||||
url: '/benyi/planweek',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除周计划(家长和教育部门)
|
||||
export function delPlanweek(id) {
|
||||
return request({
|
||||
url: '/benyi/planweek/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出周计划(家长和教育部门)
|
||||
export function exportPlanweek(query) {
|
||||
return request({
|
||||
url: '/benyi/planweek/export',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
53
ruoyi-ui/src/api/benyi/planweekitem.js
Normal file
53
ruoyi-ui/src/api/benyi/planweekitem.js
Normal file
@ -0,0 +1,53 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询周计划(家长和教育部门细化)列表
|
||||
export function listPlanweekitem(query) {
|
||||
return request({
|
||||
url: '/benyi/planweekitem/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询周计划(家长和教育部门细化)详细
|
||||
export function getPlanweekitem(id) {
|
||||
return request({
|
||||
url: '/benyi/planweekitem/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增周计划(家长和教育部门细化)
|
||||
export function addPlanweekitem(data) {
|
||||
return request({
|
||||
url: '/benyi/planweekitem',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改周计划(家长和教育部门细化)
|
||||
export function updatePlanweekitem(data) {
|
||||
return request({
|
||||
url: '/benyi/planweekitem',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除周计划(家长和教育部门细化)
|
||||
export function delPlanweekitem(id) {
|
||||
return request({
|
||||
url: '/benyi/planweekitem/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出周计划(家长和教育部门细化)
|
||||
export function exportPlanweekitem(query) {
|
||||
return request({
|
||||
url: '/benyi/planweekitem/export',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user