antiepidemic.js 920 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import request from '@/router/axios';
  2. // 列表查询
  3. export function driverQueryCollection(data) {
  4. return request({
  5. url: '/api/blade-land/ncp-check/list',
  6. method: 'get',
  7. params:data
  8. })
  9. }
  10. //获取附件
  11. export function getAttachment(data) {
  12. return request({
  13. url: '/api/blade-land/ncp-check/file-list',
  14. method: 'get',
  15. params:data
  16. })
  17. }
  18. //修改附件
  19. export function enclosure(data) {
  20. return request({
  21. url: '/api/blade-land/ncp-check/file',
  22. method: 'post',
  23. data:data
  24. })
  25. }
  26. // 保存防疫信息
  27. export function antiepidemicSave(data) {
  28. return request({
  29. url: '/api/blade-land/ncp-check/save',
  30. method: 'post',
  31. data
  32. })
  33. }
  34. // 删除防疫信息
  35. export function remove(data) {
  36. return request({
  37. url: '/api/blade-land/ncp-check/remove',
  38. method: 'post',
  39. params:data
  40. })
  41. }