si-ybkf.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. import request from '../../utils/request'
  2. // 查询基础数据
  3. export function selectYbStatInfo(data) {
  4. return request({
  5. url: '/ybQuery/selectYbStatInfo',
  6. method: 'post',
  7. data,
  8. })
  9. }
  10. // 查询同比/环比
  11. export function selectYbStatRatio(data) {
  12. return request({
  13. url: '/ybQuery/selectYbStatRatio',
  14. method: 'post',
  15. data,
  16. })
  17. }
  18. // 查询图形数据
  19. export function selectYbChart(data) {
  20. return request({
  21. url: '/ybQuery/selectYbChart',
  22. method: 'post',
  23. data,
  24. })
  25. }
  26. // 查询报表明细数据
  27. export function selectYbStatDetail(data) {
  28. return request({
  29. url: '/ybQuery/selectYbStatDetail',
  30. method: 'post',
  31. data,
  32. })
  33. }
  34. // 查询病人明细数据
  35. export function querySettlementInfo(data) {
  36. return request({
  37. url: '/siQuery/querySettlementInfo',
  38. method: 'post',
  39. data,
  40. })
  41. }
  42. // 查询动态数据
  43. export function selectBarChangeData(data) {
  44. return request({
  45. url: '/ybQuery/selectBarChangeData',
  46. method: 'post',
  47. data,
  48. })
  49. }
  50. // 查询树数据
  51. export function selectTreeData(data) {
  52. return request({
  53. url: '/ybQuery/selectTreeData',
  54. method: 'post',
  55. data,
  56. })
  57. }
  58. // 查询树所有数据
  59. export function selectTreeAllData(data) {
  60. return request({
  61. url: '/ybQuery/selectTreeAllData',
  62. method: 'post',
  63. data,
  64. })
  65. }