Files
admin-sjzx/src/api/supervision-boot/userReport/form.ts
2024-05-21 08:48:39 +08:00

33 lines
580 B
TypeScript

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