主题整合学期月计划(明细)

This commit is contained in:
paidaxing444
2020-08-26 09:07:40 +08:00
parent e47e97b89d
commit 2d8e96e661
17 changed files with 345 additions and 204 deletions

View File

@ -43,6 +43,14 @@ export function delMonthplan(id) {
})
}
// 提交主题整合学期计划
export function checkMonthplan(id) {
return request({
url: '/benyi/thememonthplan/check/' + id,
method: 'post'
})
}
// 导出主题整合月计划
export function exportMonthplan(query) {
return request({

View File

@ -3,7 +3,7 @@ import request from '@/utils/request'
// 查询主题整合周计划列表
export function listWeekplan(query) {
return request({
url: '/benyi/themeweekplan/list',
url: '/benyi/thememonthplanitem/list',
method: 'get',
params: query
})
@ -12,7 +12,7 @@ export function listWeekplan(query) {
// 查询主题整合周计划详细
export function getWeekplan(id) {
return request({
url: '/benyi/themeweekplan/' + id,
url: '/benyi/thememonthplanitem/' + id,
method: 'get'
})
}
@ -20,7 +20,7 @@ export function getWeekplan(id) {
// 新增主题整合周计划
export function addWeekplan(data) {
return request({
url: '/benyi/themeweekplan',
url: '/benyi/thememonthplanitem',
method: 'post',
data: data
})
@ -29,7 +29,7 @@ export function addWeekplan(data) {
// 修改主题整合周计划
export function updateWeekplan(data) {
return request({
url: '/benyi/themeweekplan',
url: '/benyi/thememonthplanitem',
method: 'put',
data: data
})
@ -38,7 +38,7 @@ export function updateWeekplan(data) {
// 删除主题整合周计划
export function delWeekplan(id) {
return request({
url: '/benyi/themeweekplan/' + id,
url: '/benyi/thememonthplanitem/' + id,
method: 'delete'
})
}
@ -46,7 +46,7 @@ export function delWeekplan(id) {
// 导出主题整合周计划
export function exportWeekplan(query) {
return request({
url: '/benyi/themeweekplan/export',
url: '/benyi/thememonthplanitem/export',
method: 'get',
params: query
})