需求编辑接口bug修复
This commit is contained in:
@@ -5,7 +5,8 @@ const api = {
|
||||
projectList: 'test/project/projectList',
|
||||
addProject: 'test/project/addProject',
|
||||
delProject: 'test/project/delProject',
|
||||
getProjectDetail: 'test/project/projectDetail'
|
||||
getProjectDetail: 'test/project/projectDetail',
|
||||
updateProject: 'test/project/editProject'
|
||||
}
|
||||
|
||||
export function managerList(data) {
|
||||
@@ -49,3 +50,11 @@ export function getProjectDetail(id) {
|
||||
})
|
||||
}
|
||||
|
||||
export function updateProject(data) {
|
||||
return request({
|
||||
url: api.updateProject,
|
||||
method: 'post',
|
||||
data:data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user