| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import { httpGet, httpPost, httpPUT } from '@/utils/http'
- export const conReportStatusMap = {
- 100: '待确认',
- 200: '已作废',
- 300: '审核中(修改任务单)',
- 310: '审核中(作废任务单)',
- 320: '审核中(修改时间)',
- 400: '已确认',
- 500: '记录录入',
- 510: '记录校核',
- 520: '报告编制',
- 600: '报告审核',
- 700: '报告审批',
- 710: '办结确认',
- 800: '报告办结'
- } as const
- // 待校核列表
- export const getPendingVerificationListApi = (params: any) => {
- return httpGet('/pressure/task-order/order-item/recheck/page', params)
- }
- // 退回
- export const rejectApi = (data: any) => {
- return httpPost('/pressure/task-order/order-item/recheck/reject', data)
- }
- // 单个通过
- export const approveApi = (data: any) => {
- return httpPost('/pressure/task-order/order-item/recheck/approve', data)
- }
- // 批量通过提交记录校核
- export const batchPassRecheckApi = (data: any) => {
- return httpPUT('/pressure/task-order/order-item/report/batch-recheck/approve', data)
- }
- // 批量拒绝提交记录校核
- export const batchRejectRecheckApi = (data: any) => {
- return httpPUT('/pressure/task-order/order-item/report/batch-recheck/rollback', data)
- }
|