Fixiaobai
2023-09-05 5535157ce811a29c4e3c68148fd110c9c5a4137b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from '@/utils/request'
 
export function selectAllReportCheck(params) {
  return request({
    // url: '/reportAuditing/selectAllReportAuditing',
    url: '/report/selectAllReport',
    method: 'get',
    params
  })
}
// 审核
export function checkApi(params){ 
  return request({
    url: '/report/check',
    method: 'post',
    params
  })
}