jhbigscreen/src/api/checkDetection/index.js

22 lines
375 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
}
const getList=data=>{
return request({
url: `bgscreen/checkDetection/getList`,
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
}