| | |
| | | }) |
| | | } |
| | | |
| | | // 获取主管标识 |
| | | export function getManagerFlag(recordId) { |
| | | return request({ |
| | | url: '/project/info/getManagerFlag/'+ recordId, |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | // 查询计划记录列表 |
| | | export function getPlanRecordList(id) { |
| | | return request({ |
| | |
| | | }) |
| | | } |
| | | |
| | | // 查询项目计划记录详细 |
| | | export function getRecord(id) { |
| | | return request({ |
| | | url: '/plan/record/' + id, |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | // 新增项目计划记录 |
| | | export function addRecord(data) { |
| | | return request({ |
| | | url: '/api/project-plan-record', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | // 修改项目计划记录 |
| | | export function updateRecord(data) { |
| | | return request({ |
| | | url: '/plan/record', |
| | | method: 'put', |
| | | data: data |
| | | }) |
| | | } |
| | |
| | | }) |
| | | } |
| | | |
| | | // 回复上级批复 |
| | | export function replyDepartmentApproval(data) { |
| | | // 保存审批 |
| | | export function saveExamine(data) { |
| | | return request({ |
| | | url: '/api/project-plan-examine-record/replyDepartmentApproval', |
| | | url: '/api/project-plan-examine-record/saveExamine', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | // 回复审批 |
| | | export function replyExamine(data) { |
| | | return request({ |
| | | url: '/api/project-plan-examine-record/replyExamine', |
| | | method: 'post', |
| | | data: data |
| | | }) |