班级信息bug和月计划

This commit is contained in:
paidaxing444
2020-08-18 18:51:45 +08:00
parent 343046356f
commit 7c5ac8e992
17 changed files with 1117 additions and 30 deletions

View File

@ -0,0 +1,53 @@
import request from '@/utils/request'
// 查询主题整合月计划列表
export function listMonthplan(query) {
return request({
url: '/benyi/thememonthplan/list',
method: 'get',
params: query
})
}
// 查询主题整合月计划详细
export function getMonthplan(id) {
return request({
url: '/benyi/thememonthplan/' + id,
method: 'get'
})
}
// 新增主题整合月计划
export function addMonthplan(data) {
return request({
url: '/benyi/thememonthplan',
method: 'post',
data: data
})
}
// 修改主题整合月计划
export function updateMonthplan(data) {
return request({
url: '/benyi/thememonthplan',
method: 'put',
data: data
})
}
// 删除主题整合月计划
export function delMonthplan(id) {
return request({
url: '/benyi/thememonthplan/' + id,
method: 'delete'
})
}
// 导出主题整合月计划
export function exportMonthplan(query) {
return request({
url: '/benyi/thememonthplan/export',
method: 'get',
params: query
})
}