statistics-api.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. (function(exports) {
  2. var statisticAPI = {
  3. /*************首页*******************/
  4. getSignInfo: function(data){
  5. return httpRequest.get("/statistics/sign_info", {data: data});
  6. },
  7. /*************总体分析页面接口列表**************/
  8. //1、顶部各个tab的值
  9. statisticTotal: function(data){
  10. return httpRequest.get("/statistics/total", {data: data});
  11. },
  12. //微信绑定和设备绑定数据接口
  13. statisticBindAll: function(data){
  14. return httpRequest.get("/statistics/index_all", {data: data});
  15. },
  16. //健康文章发送数量
  17. articleAll: function(data){
  18. return httpRequest.get("/statistics/article_total", {data: data});
  19. },
  20. //2、中间折线图接口
  21. //增量(咨询量3、随访量4、健康教育5、代预约量27),到达量(绑定微信21、绑定设备20)
  22. interval: function(data){
  23. return httpRequest.get("statistics/interval", {data: data});
  24. },
  25. intervalTotal: function(data){
  26. return httpRequest.get("statistics/interval_total", {data: data});
  27. },
  28. //3、底部区域数据接口
  29. lowlevelTotal: function(data){
  30. return httpRequest.get("statistics/lowlevel_total", {data: data});
  31. },
  32. //微信绑定和设备绑定
  33. lowlevelAll: function(data){
  34. return httpRequest.get("statistics/lowlevel_all", {data: data});
  35. },
  36. //咨询量数据
  37. lowlevelTotalMesh: function(data){
  38. return httpRequest.get("statistics/lowlevel_total_mesh", {data: data});
  39. },
  40. articleLowlevelTotal: function(data){
  41. return httpRequest.get("/statistics/article_lowlevel_total", {data: data});
  42. },
  43. lowlevelData: function(url, data){
  44. return httpRequest.get(url, {data: data});
  45. },
  46. //获得团队的详情
  47. getTeamInfo: function(data){
  48. return httpRequest.get("doctor/admin-teams/teams/info", {data: data});
  49. },
  50. //获取居民分析相关数据
  51. leveltwoIncrementData: function(data){
  52. return httpRequest.get("/statistics/leveltwo_increment", {data: data});
  53. },
  54. statisticsTime:function(data){
  55. return httpRequest.get("/statistics/time", {data: data});
  56. },
  57. //长处方分析接口
  58. getPrescriptionTotalHistogram: function(data){
  59. return httpRequest.get("statistics/getPrescriptionTotalHistogram", {data: data})
  60. },
  61. //评价分析
  62. //按月份获得个月的评价平均分
  63. getAVGSocreByMonth: function(data){
  64. return httpRequest.get("/statistics/getAVGSocreByMonth", {data: data});
  65. }
  66. }
  67. exports.statisticAPI = statisticAPI;
  68. })(window)