jeecgBootUniapp/src/api/bpm/sign.ts
2025-06-12 12:34:30 +08:00

26 lines
532 B
Vue

import { http } from '@/utils/http';
/*通过id查询数据*/
export function checkSign(ldhth : string) {
return http({
url: '/cxcesign/cxcEsign/getUserCo',
method: 'GET',
data: { ldhth }
})
}
export function getCompleteNum(procInsId : string) {
return http({
url: '/cxcesign/cxcEsign/getCompleteNum',
method: 'GET',
data: { procInsId }
})
}
export function processHistoryList(processInstanceId : string) {
return http({
url: '/act/task/processHistoryList',
method: 'GET',
data: { processInstanceId }
})
}