You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ningxiaWeb/jnpf-app/api/workFlow/entrust.js

77 lines
1.5 KiB

import request from '@/utils/request'
// 获取流程委托列表
export function FlowDelegateList(data) {
return request({
url: `/api/workflow/Engine/FlowDelegate`,
method: 'get',
data
})
}
// 获取流程委托信息
export function FlowDelegateInfo(id) {
return request({
url: `/api/workflow/Engine/FlowDelegate/${id}`,
method: 'get'
})
}
// 删除流程委托
export function DeleteDelagate(id) {
return request({
url: `/api/workflow/Engine/FlowDelegate/${id}`,
method: 'DELETE'
})
}
// 新建流程委托
export function Create(data) {
return request({
url: `/api/workflow/Engine/FlowDelegate`,
method: 'post',
data
})
}
// 更新流程委托
export function Update(data) {
return request({
url: `/api/workflow/Engine/FlowDelegate/${data.id}`,
method: 'PUT',
data
})
}
// 获取我的委托发起流程
export function delegateGetflow(data) {
return request({
url: `/api/workflow/Engine/FlowDelegate/getflow`,
method: 'get',
data
})
}
// 获取一个流程的所有委托人
export function getUserListByFlowId(data) {
return request({
url: `/api/workflow/Engine/FlowDelegate/userList`,
method: 'get',
data
})
}
// 获取一个流程的所有委托人
export function entrustStop(id) {
return request({
url: `/api/workflow/Engine/FlowDelegate/Stop/${id}`,
method: 'put'
})
}
// 获取用户下拉框列表
export const getListByAuthorize = (organizeId, keyword) => {
return request({
url: `/api/permission/Users/GetListByAuthorize/${organizeId}`,
method: 'post',
data: {
keyword
}
})
}