You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suzhouyingjiPC/src/api/yingji/planManage.js

50 lines
1.0 KiB

import request from '@/utils/request'
// 分页条件查询企业基本信息列表
export function listMsgEnterprise(query) {
return request({
url: '/info/list',
method: 'get',
params: query
})
}
// 分页条件查询计划管理
export function listPlanGL(query) {
return request({
url: '/bPlanManage',
method: 'get',
params: query
})
}
// 新增计划管理
export function addPlanGL(data) {
return request({
url: '/bPlanManage',
method: 'post',
data
})
}
//修改计划管理
export function updatePlanGL(data) {
return request({
url: '/bPlanManage',
method: 'put',
data
})
}
//删除计划管理
export function deletePlanGL(data) {
return request({
url: '/bPlanManage',
method: 'delete',
data
})
}
//通过主键查询单条计划管理
export function getPlanGL(id) {
return request({
url: `/bPlanManage/${id}`,
method: 'get',
})
}