初始提交

This commit is contained in:
2026-01-04 11:09:06 +08:00
commit 8fa31df250
1326 changed files with 213907 additions and 0 deletions

49
api/workFlow/template.js Normal file
View File

@@ -0,0 +1,49 @@
import request from '@/utils/request'
// 获取发起
export function getFlowLaunchList(data) {
return request({
url: `/api/workflow/task`,
method: 'get',
data,
options: {
load: false
}
})
}
// 删除流程发起
export function delFlowLaunch(id) {
return request({
url: '/api/workflow/task/' + id,
method: 'delete',
});
}
// 获取待签
export function getOperatorList(data) {
return request({
url: `/api/workflow/operator/List/${data.category}`,
method: 'get',
data,
options: {
load: false
}
})
}
// 获取流程发起列表
// export function TreeList() {
// return request({
// url: `/api/workflow/template/TreeList`,
// method: 'get'
// })
// }
// 获取流程发起列表
// export function OperatorList() {
// return request({
// url: `api/workflow/operator/List/0`,
// method: 'get'
// })
// }