| | |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | } |
| | | |
| | | // 延期 |
| | | export function delayPlanInfo(data) { |
| | | return request({ |
| | | url: '/api/project-plan-info/delayPlanInfo', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | // 获得上级批复 |
| | | export function getDepartmentApproval(id) { |
| | | return request({ |
| | | url: '/api/project-plan-examine-record/departmentApproval/' + id, |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | // 回复上级批复 |
| | | export function replyDepartmentApproval(data) { |
| | | return request({ |
| | | url: '/api/project-plan-examine-record/replyDepartmentApproval', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | // 计划日志 |
| | | export function getPlanLog(id) { |
| | | return request({ |
| | | url: '/api/project-plan-examine-record/planLog/' + id, |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | |
| | | |