123456789101112131415161718192021222324252627282930313233343536 |
- import { HcApi } from '../../../request/index'
- export default {
- //外委或三方数据分页条件查询
- async queryPage(form) {
- return HcApi({
- url: '/api/blade-business/detection/data/page',
- method: 'post',
- data: form,
- })
- },
- //外委或三方数据新增或者修改
- async submitForm(form) {
- return HcApi({
- url: '/api/blade-business/detection/data/submit',
- method: 'post',
- data: form,
- })
- },
- //外委或三方数据批量删除
- async removeData(form) {
- return HcApi({
- url: '/api/blade-business/detection/data/remove',
- method: 'post',
- params: form,
- })
- },
- //外委或三方数据复制
- async copyData(form) {
- return HcApi({
- url: '/api/blade-business/detection/data/copy',
- method: 'post',
- data: form,
- })
- },
- }
|