perf(流程管理): 删除前端流程未使用的接口定义

This commit is contained in:
konbai
2023-01-02 00:35:01 +08:00
parent e7fa257731
commit 80cce5ab46
2 changed files with 0 additions and 52 deletions

View File

@@ -88,15 +88,6 @@ export function listCopyProcess(query) {
})
}
// 完成任务
export function complete(data) {
return request({
url: '/workflow/task/complete',
method: 'post',
data: data
})
}
// 取消申请
export function stopProcess(data) {
return request({
@@ -106,32 +97,6 @@ export function stopProcess(data) {
})
}
// 驳回任务
export function rejectTask(data) {
return request({
url: '/workflow/task/reject',
method: 'post',
data: data
})
}
// 可退回任务列表
export function returnList(data) {
return request({
url: '/workflow/task/returnList',
method: 'post',
data: data
})
}
// 部署流程实例
export function deployStart(deployId) {
return request({
url: '/workflow/process/startFlow/' + deployId,
method: 'get',
})
}
// 删除流程实例
export function delProcess(id) {
return request({