| | |
| | | }) |
| | | } |
| | | |
| | | // 阶段 |
| | | export function saveStage(data) { |
| | | return request({ |
| | | url: '/projectManagement/info/saveStage', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | export function listStage(projectId) { |
| | | return request({ |
| | | url: `/projectManagement/info/listStage/${projectId}`, |
| | | method: 'post' |
| | | }) |
| | | } |
| | | |
| | | export function deleteStage(stageId) { |
| | | return request({ |
| | | url: `/projectManagement/info/deleteStage/${stageId}`, |
| | | method: 'post' |
| | | }) |
| | | } |
| | | |
| | | export function listPlan(data) { |
| | | return request({ |
| | | url: '/projectManagement/plan/listPage', |
| | |
| | | method: 'post' |
| | | }) |
| | | } |
| | | |
| | | // 获取项目归档附件 |
| | | export function getProjectAttachments(id) { |
| | | return request({ |
| | | url: `/projectManagement/info/attachments/${id}`, |
| | | method: 'get' |
| | | }) |
| | | } |