bigDataOut-api.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. (function(exports) {
  2. var bigDataOutApi = {
  3. // 获取热搜
  4. hot_words: function() {
  5. var params ={
  6. reCount:5,
  7. type:1
  8. }
  9. return httpRequest.get("/resource/api/v1.0/resource/text_search/hot_words",{data: params,getServer:true})
  10. },
  11. //全文检索
  12. text_search: function(data) {
  13. return httpRequest.get("/resource/api/v1.0/resource/text_search",{data: data,getServer:true})
  14. },
  15. // 频繁就医
  16. getOftenIllList: function(data) {
  17. return httpRequest.get("/quota/api/v1.0/tj/getOftenIllList",{data: data,getServer:true})
  18. },
  19. // 超高费用
  20. getHighCostList: function(data) {
  21. return httpRequest.get("/quota/api/v1.0/tj/getHighCostList",{data: data,getServer:true})
  22. },
  23. // 重复检查检验
  24. getRepeateInspectList: function(data) {
  25. return httpRequest.get("/quota/api/v1.0/tj/getRepeateInspectList",{data: data,getServer:true})
  26. },
  27. // 用药分析
  28. drugAnalysis: function(data) {
  29. return httpRequest.get("/quota/api/v1.0/tj/drugAnalysis",{data: data,getServer:true})
  30. },
  31. // 字典接口
  32. lastDictItem: function(data) {
  33. return httpRequest.get("/gateway/hos-admin/api/v1.0/standardCenter/lastDictItem/list?tenant_name=jkzl",{data: data})
  34. },
  35. }
  36. exports.bigDataOutApi = bigDataOutApi;
  37. })(window)