需求编辑接口bug修复

This commit is contained in:
pfl
2025-04-18 14:41:54 +08:00
parent c91a6183ba
commit 497ff672d1
7 changed files with 98 additions and 14 deletions

View File

@@ -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
})
}