| | |
| | | data: row |
| | | }) |
| | | } |
| | | // =====================审核流程=========================== |
| | | /* |
| | | *开始流程 |
| | | */ |
| | | export const startDelayProcess = (row) => { |
| | | return request({ |
| | | url: '/apiapplicationDelay/applicationDelay/start-process', |
| | | method: 'post', |
| | | data: row |
| | | }) |
| | | } |
| | | |
| | | /** |
| | | * 获取申请流程详情 |
| | | * @param businessId |
| | | * @returns {AxiosPromise} |
| | | */ |
| | | export const delayDetail = (businessId) => { |
| | | return request({ |
| | | url: '/apiapplicationDelay/applicationDelay/process-detail', |
| | | method: 'get', |
| | | params: { |
| | | businessId |
| | | } |
| | | }) |
| | | } |
| | | |
| | | /** |
| | | * 审批人员完成任务 |
| | | * @param data |
| | | * @returns {AxiosPromise} |
| | | */ |
| | | export const completeTask = (data) => { |
| | | return request({ |
| | | url: '/apiapplicationDelay/applicationDelay/complete-task', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |
| | | |