流程待处理、已处理、以及流程详情页操作回显

This commit is contained in:
2024-05-12 19:31:08 +08:00
parent 3b6222e672
commit 7c880dcbe4
23 changed files with 1974 additions and 132 deletions

View File

@@ -2,7 +2,7 @@ import createAxios from '@/utils/request'
import { SUPERVISION_BOOT } from '@/utils/constantRequest'
const MAPPING_PATH = SUPERVISION_BOOT + '/workflow/wfForm'
const MAPPING_PATH = SUPERVISION_BOOT + '/userReport'
/**
* 查询流程表单数据
@@ -14,3 +14,14 @@ export const getUserReport = (data: any) => {
data: data
})
}
/**
* 根据id获取用户档案录入的详细数据
*/
export const getUserReportById = (id: any) => {
return createAxios({
url: MAPPING_PATH + '/getById?id='+id,
method: 'GET'
})
}