bladex前端ui项目,基于avue-cli2.0开发
包含基础工作流,不包含表单设计器
https://git.javablade.com/blade/Saber
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.
34 lines
686 B
34 lines
686 B
import request from '@/router/axios'; |
|
|
|
// =====================参数=========================== |
|
|
|
export const historyFlowList = (current, size, params) => { |
|
return request({ |
|
url: '/api/blade-flow/process/history-flow-list', |
|
method: 'get', |
|
params: { |
|
...params, |
|
current, |
|
size, |
|
} |
|
}) |
|
} |
|
|
|
|
|
// =====================请假流程=========================== |
|
|
|
export const leaveProcess = (data) => { |
|
return request({ |
|
url: '/api/blade-desk/process/leave/start-process', |
|
method: 'post', |
|
data |
|
}) |
|
} |
|
|
|
export const leaveDetail = (params) => { |
|
return request({ |
|
url: '/api/blade-desk/process/leave/detail', |
|
method: 'get', |
|
params |
|
}) |
|
}
|
|
|