drugReportCount.js 544 B

123456789101112131415161718192021222324252627
  1. import request from '@/utils/request'
  2. // 查询咨询统计列表
  3. export function listDrugReportCount(query) {
  4. return request({
  5. url: '/store/drugReportCount/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询咨询统计详细
  11. export function getDrugReportCount(id) {
  12. return request({
  13. url: '/store/drugReportCount/' + id,
  14. method: 'get'
  15. })
  16. }
  17. // 导出咨询统计
  18. export function exportDrugReportCount(query) {
  19. return request({
  20. url: '/store/drugReportCount/export',
  21. method: 'get',
  22. params: query
  23. })
  24. }