intelligent-api.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. (function(exports) {
  2. var intelligentAPI = {
  3. //慢病患者情况-统计
  4. chronicDiseaseCount: function(data) {
  5. return httpRequest.get("/svr-iot/wlyy/chronicDiseaseCount", {data: data})
  6. },
  7. //预警信息警报
  8. warningInformationAlarm: function(data) {
  9. return httpRequest.get("/svr-iot/wlyy/warningInformationAlarm", {data: data})
  10. },
  11. //设备发放情况
  12. equipmentDistribution: function(data) {
  13. return httpRequest.get("/svr-iot/wlyy/equipmentDistribution", {data: data})
  14. },
  15. //设备绑定情况
  16. deviceBinding: function(data) {
  17. return httpRequest.get("/svr-iot/wlyy/deviceBinding", {data: data})
  18. },
  19. //居民 医生搜索
  20. searchPatient: function(data) {
  21. return httpRequest.get("/svr-iot/wlyy/searchPatient", {data: data})
  22. },
  23. //坐标信息
  24. findLocationByIdCard: function(data) {
  25. return httpRequest.get("/svr-iot/wlyy/findLocationByIdCard", {data: data})
  26. },
  27. // 居民搜索
  28. searchPatient: function(data) {
  29. return httpRequest.get("/svr-iot/wlyy/searchPatient", {data: data})
  30. }
  31. }
  32. exports.intelligentAPI = intelligentAPI;
  33. })(window)