| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import request from '@/router/axios';
- // 列表查询
- export function driverQueryCollection(data) {
- return request({
- url: '/api/blade-land/ncp-check/list',
- method: 'get',
- params:data
- })
- }
- //获取附件
- export function getAttachment(data) {
- return request({
- url: '/api/blade-land/ncp-check/file-list',
- method: 'get',
- params:data
- })
- }
- //修改附件
- export function enclosure(data) {
- return request({
- url: '/api/blade-land/ncp-check/file',
- method: 'post',
- data:data
- })
- }
- // 保存防疫信息
- export function antiepidemicSave(data) {
- return request({
- url: '/api/blade-land/ncp-check/save',
- method: 'post',
- data
- })
- }
- // 删除防疫信息
- export function remove(data) {
- return request({
- url: '/api/blade-land/ncp-check/remove',
- method: 'post',
- params:data
- })
- }
|