1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| import {axios as request} from '@/utils/request'
|
| // 我的发起的流程
| export function myProcessList(query) {
| return request({
| url: '/flowable/task/myProcess',
| method: 'get',
| params: query
| })
| }
|
|
| // 取消申请
| export function deleteByDataId(dataId,deleteReason) {
| const data = {
| dataId:dataId,
| deleteReason:deleteReason
| }
| return request({
| url: '/flowable/instance/deleteByDataId',
| method: 'post',
| params: data
| })
| }
|
|
| // 部署流程实例
| export function deployStart(deployId) {
| return request({
| url: '/flowable/process/startFlow/' + deployId,
| method: 'get',
| })
| }
|
|