jhbigscreen/src/api/checkDetection/index.js

22 lines
434 B
JavaScript
Raw Normal View History

2023-08-26 01:23:16 +08:00
import request from '@/utils/request'
const groupByCheckType=(data)=> {
return request({
url: `bgscreen/checkDetection/groupByCheckType`,
method: 'post',
data:data
})
2023-09-16 00:09:29 +08:00
}
2024-04-28 00:45:56 +08:00
const getList=(data,pageSize,pageNum)=>{
2023-09-16 00:09:29 +08:00
return request({
2024-04-28 00:45:56 +08:00
url: `bgscreen/checkDetection/getList?pageNum=${pageNum}&pageSize=${pageSize}`,
2023-09-16 00:09:29 +08:00
method: 'post',
data:data
})
}
2023-08-26 01:23:16 +08:00
export default{
2023-09-16 00:09:29 +08:00
groupByCheckType,
getList
2023-08-26 01:23:16 +08:00
}