实现我的流程的前端 UI 界面

This commit is contained in:
YunaiV
2022-01-08 01:14:54 +08:00
parent 55a6ec78e4
commit bb11acb15f
9 changed files with 314 additions and 13 deletions

View File

@ -0,0 +1,9 @@
import request from '@/utils/request'
export function getMyProcessInstancePage(query) {
return request({
url: '/bpm/process-instance/my-page',
method: 'get',
params: query
})
}