fix -- 修复我的流程跳转后表单内容为空,优化流程详情页面显示布局。

This commit is contained in:
konbai
2022-04-02 22:25:12 +08:00
parent 0e0207f2ea
commit cddc5cf121
12 changed files with 297 additions and 203 deletions

View File

@@ -0,0 +1,10 @@
import request from '@/utils/request'
// 查询流程实例详情信息
export function getDetailInstance(query) {
return request({
url: '/workflow/instance/detail',
method: 'get',
params: query
})
}

View File

@@ -20,9 +20,9 @@ export function startProcess(processDefId, data) {
}
// 我的发起的流程
export function myProcessList(query) {
export function listOwnProcess(query) {
return request({
url: '/workflow/task/myProcess',
url: '/workflow/process/own',
method: 'get',
params: query
})