data.js 634 B

123456789101112131415161718192021222324252627282930
  1. import request from '@/utils/request'
  2. /**
  3. * 查普通患者
  4. * @param {*} data
  5. * @returns
  6. */
  7. export function manageQuery(data) {
  8. return request({
  9. url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/doctor/stat/manage/query`,
  10. method: 'post',
  11. data
  12. })
  13. }
  14. export function diversionQuery(data) {
  15. return request({
  16. url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/doctor/stat/diversion/query`,
  17. method: 'post',
  18. data
  19. })
  20. }
  21. export function followupQuery(data) {
  22. return request({
  23. url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/doctor/stat/followup/query`,
  24. method: 'post',
  25. data
  26. })
  27. }