mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
feat-wip(components): 抽取leaveEdit组件,适配流程编辑和预览功能
This commit is contained in:
@ -10,7 +10,7 @@ export function fetchGetLeaveList(params?: Api.Workflow.LeaveSearchParams) {
|
||||
}
|
||||
/** 获取请假申请详情 */
|
||||
export function fetchGetLeaveDetail(id: CommonType.IdType) {
|
||||
return request<Api.Workflow.LeaveOperateParams>({
|
||||
return request<Api.Workflow.LeaveDetail>({
|
||||
url: `/workflow/leave/${id}`,
|
||||
method: 'get'
|
||||
});
|
||||
@ -41,3 +41,11 @@ export function fetchBatchDeleteLeave(ids: CommonType.IdType[]) {
|
||||
method: 'delete'
|
||||
});
|
||||
}
|
||||
|
||||
/** 撤销请假申请 */
|
||||
export function fetchCancelLeave(id: CommonType.IdType) {
|
||||
return request<boolean>({
|
||||
url: `/workflow/leave/cancel/${id}`,
|
||||
method: 'put'
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user