nxdt-web/src/api/pro/supervisor-person-manage.js

20 lines
397 B
JavaScript
Raw Normal View History

2025-05-27 15:36:38 +08:00
import request from '@/utils/request'
2025-05-29 08:54:16 +08:00
// 获取监理人员列表接口
export function getPtSupPersonApi(data) {
2025-05-27 15:36:38 +08:00
return request({
2025-05-29 08:54:16 +08:00
url: '/project/SupervisionUnit/getPtSupPerson',
2025-05-27 15:36:38 +08:00
method: 'get',
2025-05-29 08:54:16 +08:00
params: data,
2025-05-27 15:36:38 +08:00
})
}
2025-05-29 08:54:16 +08:00
// 提交审核接口
export function submitApprovalApi(data) {
2025-05-27 15:36:38 +08:00
return request({
2025-05-29 08:54:16 +08:00
url: '/flowable/business/submitApproval',
method: 'post',
data,
2025-05-27 15:36:38 +08:00
})
}