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 }) }