feat: 新增需求

This commit is contained in:
caijun
2026-01-19 17:34:15 +08:00
parent 8fa31df250
commit 9f5b2a92c4
67 changed files with 7518 additions and 481 deletions

View File

@@ -30,6 +30,54 @@ export function getOperatorList(data) {
})
}
// 获取我的流程
export function getMyPage(data) {
return request({
url: `/admin-api/bpm/process-instance/my-page`,
method: 'get',
data,
options: {
load: false
}
})
}
// 获取待办流程
export function getTodoPage(data) {
return request({
url: `/admin-api/bpm/task/todo-page`,
method: 'get',
data,
options: {
load: false
}
})
}
// 获取已办流程
export function getDonePage(data) {
return request({
url: `/admin-api/bpm/task/done-page`,
method: 'get',
data,
options: {
load: false
}
})
}
// 获取抄送流程
export function getCcMyPage(data) {
return request({
url: `/admin-api/bpm/process-instance/cc/my-page`,
method: 'get',
data,
options: {
load: false
}
})
}
// 获取流程发起列表