body-record-api.js 516 B

123456789101112131415161718
  1. (function() {
  2. var bodyRecordApis = {
  3. // 体征设备判断绑定
  4. getPatientDevice: function(data) {
  5. return APIService.httpGet('doctor/device/PatientDeviceList', data);
  6. },
  7. // 最后一条数据,用来推算时间
  8. getBodyRecoredLast: function(data) {
  9. return APIService.httpGet('doctor/health_index/last', data);
  10. },
  11. // 获取记录
  12. getBodyRecordData: function(data) {
  13. return APIService.httpPost('doctor/health_index/chart', data);
  14. }
  15. }
  16. window.bodyRecordApis = bodyRecordApis;
  17. })(jQuery)