123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- import request from '@/utils/request'
-
- // 查询待办任务列表
- export function todoList(query) {
- return request({
- url: '/flowable/task/todoList',
- method: 'get',
- params: query
- })
- }
-
- // 完成任务
- export function complete(data) {
- return request({
- url: '/flowable/task/complete',
- method: 'post',
- data: data
- })
- }
-
- // 委派任务
- export function delegate(data) {
- return request({
- url: '/flowable/task/delegate',
- method: 'post',
- data: data
- })
- }
-
- // 转办任务
- export function assignTask(data) {
- return request({
- url: '/flowable/task/assignTask',
- method: 'post',
- data: data
- })
- }
-
- // 退回任务
- export function returnTask(data) {
- return request({
- url: '/flowable/task/return',
- method: 'post',
- data: data
- })
- }
-
- // 重新提交任务
- export function taskRecommit(data) {
- return request({
- url: '/flowable/task/reCommit',
- method: 'post',
- data: data
- })
- }
-
- // 驳回任务
- export function rejectTask(data) {
- return request({
- url: '/flowable/task/reject',
- method: 'post',
- data: data
- })
- }
-
- // 可退回任务列表
- export function returnList(data) {
- return request({
- url: '/flowable/task/returnList',
- method: 'post',
- data: data
- })
- }
-
- // 下一节点
- export function getNextFlowNode(data) {
- return request({
- url: '/flowable/task/nextFlowNode',
- method: 'post',
- data: data
- })
- }
-
- // 下一节点
- export function getNextFlowNodeByStart(data) {
- return request({
- url: '/flowable/task/nextFlowNodeByStart',
- method: 'post',
- data: data
- })
- }
-
- // 部署流程实例
- export function deployStart(deployId) {
- return request({
- url: '/flowable/process/startFlow/' + deployId,
- method: 'get',
- })
- }
-
- // 查询流程定义详细
- export function getDeployment(id) {
- return request({
- url: '/system/deployment/' + id,
- method: 'get'
- })
- }
-
- // 新增流程定义
- export function addDeployment(data) {
- return request({
- url: '/system/deployment',
- method: 'post',
- data: data
- })
- }
-
- // 修改流程定义
- export function updateDeployment(data) {
- return request({
- url: '/system/deployment',
- method: 'put',
- data: data
- })
- }
-
- // 删除流程定义
- export function delDeployment(id) {
- return request({
- url: '/system/deployment/' + id,
- method: 'delete'
- })
- }
-
- // 导出流程定义
- export function exportDeployment(query) {
- return request({
- url: '/system/deployment/export',
- method: 'get',
- params: query
- })
- }
- // 流程节点表单
- export function flowTaskForm(query) {
- return request({
- url: '/flowable/task/flowTaskForm',
- method: 'get',
- params: query
- })
- }
-
- // 重新提交到退回人
- export function findReCommitTask(data){
- return request({
- url: '/flowable/task/reCommitTask',
- method: 'post',
- data: data
- })
- }
|