This commit is contained in:
2024-05-09 18:46:28 +08:00
parent 59945b5652
commit 1ad42cf661
7 changed files with 34 additions and 232 deletions

View File

@@ -0,0 +1,16 @@
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
})
}