Commit 53c55e16 authored by 祁正's avatar 祁正

ccap项目管理-抽屉列表

parent aaa7f8c7
...@@ -17,3 +17,27 @@ export function getAllBusinessUnitList() { ...@@ -17,3 +17,27 @@ export function getAllBusinessUnitList() {
method: 'get' method: 'get'
}) })
} }
// 根据id获取所有项目列表
export function getProjectListById(data) {
return request({
url: '/control/ccapProjectManagement/getProjectListById',
method: 'get',
params:data
})
}
// 根据id新增一条抽屉里面的数据
export function inserTableData(data) {
return request({
url: '/control/ccapProjectManagement/inserTableData',
method: 'post',
data:data
})
}
// 批量删除
export function inserTableData(ids) {
return request({
url: '/control/ccapProjectManagement/batch/'+ids,
method: 'delete'
})
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment