patient-api.js 856 B

12345678910111213141516171819202122232425
  1. (function(exports) {
  2. var patientAPI = {
  3. getPatientInfo: function(data) {
  4. return httpRequest.get("/svr-iot/wlyy/persionalInfo",{data: data})
  5. },
  6. //获得居民住院信息
  7. getZYinfo: function(data){
  8. return httpRequest.get("/svr-iot/wlyy/event", {data: data});
  9. },
  10. //获取图标数据
  11. getChartData: function(data){
  12. return httpRequest.get("/svr-iot/wlyy/chart", {data: data});
  13. },
  14. //获取家人信息
  15. getFamilyInfo: function(data){
  16. return httpRequest.get("/svr-iot/wlyy/familyMember", {data: data});
  17. },
  18. //获得设备信息
  19. getDeviceInfo: function(data){
  20. return httpRequest.get("/svr-iot/wlyy/healthDevice", {data: data});
  21. }
  22. }
  23. exports.patientAPI = patientAPI;
  24. })(window)