mdt.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. import request from '@/utils/request'
  2. /**
  3. * MDT 统计
  4. * @param {*} data
  5. * @returns
  6. */
  7. export function getStatisticCount(data) {
  8. return request({
  9. url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/statistic/count`,
  10. method: 'post',
  11. data
  12. })
  13. }
  14. /**
  15. * MDT 绩效
  16. * @param {*} data
  17. * @returns
  18. */
  19. export function getStatisticCountByDoctor(data) {
  20. return request({
  21. url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/statistic/doctor`,
  22. method: 'post',
  23. data
  24. })
  25. }
  26. /**
  27. * MDT 会诊记录
  28. * @param {*} data
  29. * @returns
  30. */
  31. export function queryMdtManageList(data) {
  32. return request({
  33. url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/query`,
  34. method: 'post',
  35. data
  36. })
  37. }
  38. /**
  39. * 获取详情
  40. * @param {*} data
  41. * @returns
  42. */
  43. export function queryMdtDetail(data) {
  44. return request({
  45. url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/detail`,
  46. method: 'post',
  47. data
  48. })
  49. }
  50. // 重新发送
  51. export function resendLaunch(data) {
  52. return request({
  53. url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/launch/apply/resendLaunch`,
  54. method: 'post',
  55. data
  56. })
  57. }
  58. export function feeList(data) {
  59. return request({
  60. url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/fee/data/query`,
  61. method: 'post',
  62. data
  63. })
  64. }
  65. export function feeExport(data) {
  66. return request({
  67. url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/fee/data/export`,
  68. method: 'get',
  69. headers: {
  70. 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'
  71. },
  72. responseType: 'blob',
  73. data
  74. })
  75. }