17 lines
368 B
TypeScript
17 lines
368 B
TypeScript
|
|
import createAxios from '@/utils/request'
|
||
|
|
|
||
|
|
import { SUPERVISION_BOOT } from '@/utils/constantRequest'
|
||
|
|
|
||
|
|
const MAPPING_PATH = SUPERVISION_BOOT + '/workflow/wfForm'
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询流程表单数据
|
||
|
|
*/
|
||
|
|
export const getUserReport = (data: any) => {
|
||
|
|
return createAxios({
|
||
|
|
url: MAPPING_PATH + '/getUserReport',
|
||
|
|
method: 'POST',
|
||
|
|
data: data
|
||
|
|
})
|
||
|
|
}
|