flowLaunch.js 667 Bytes
import request from '@/utils/request'

// 获取流程发起列表
export function FlowLaunchList(data, options) {
	return request({
		url: `/api/workflow/Engine/FlowLaunch`,
		method: 'get',
		data,
		options
	})
}
// 删除流程发起
export function Delete(id) {
	return request({
		url: `/api/workflow/Engine/FlowLaunch/${id}`,
		method: 'DELETE'
	})
}
// 撤回流程发起
export function Revoke(id, data) {
	return request({
		url: `/api/workflow/Engine/FlowLaunch/${id}/Actions/Withdraw`,
		method: 'PUT',
		data
	})
}
// 发起催办
export function Press(id) {
	return request({
		url: `/api/workflow/Engine/FlowLaunch/Press/${id}`,
		method: 'post'
	})
}