antiepidemic.js 399 B

123456789101112131415161718
  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. }