| | |
| | | * @param query |
| | | * @returns {*} |
| | | */ |
| | | export const getWorkflowAddMultiListByPage = (query: object) => { |
| | | export const getPageByAddMultiInstance = (query: object) => { |
| | | return request({ |
| | | url: '/workflow/user/getWorkflowAddMultiListByPage', |
| | | url: '/workflow/user/getPageByAddMultiInstance', |
| | | method: 'get', |
| | | params: query |
| | | }); |
| | |
| | | * @param query |
| | | * @returns {*} |
| | | */ |
| | | export const getWorkflowDeleteMultiInstanceList = (taskId: string) => { |
| | | export const getListByDeleteMultiInstance = (taskId: string) => { |
| | | return request({ |
| | | url: '/workflow/user/getWorkflowDeleteMultiInstanceList/' + taskId, |
| | | url: '/workflow/user/getListByDeleteMultiInstance/' + taskId, |
| | | method: 'get' |
| | | }); |
| | | }; |
| | |
| | | * @param query |
| | | * @returns {*} |
| | | */ |
| | | export const getUserListByPage = (query: object) => { |
| | | export const getPageByUserList = (query: object) => { |
| | | return request({ |
| | | url: '/workflow/user/getUserListByPage', |
| | | url: '/workflow/user/getPageByUserList', |
| | | method: 'get', |
| | | params: query |
| | | }); |