body-record-api.js 373 B

1234567891011121314
  1. (function() {
  2. var bodyRecordApis = {
  3. // 最后一条数据,用来推算时间
  4. getBodyRecoredLast: function(data) {
  5. return APIService.httpGet('doctor/health_index/last', data);
  6. },
  7. // 获取记录
  8. getBodyRecordData: function(data) {
  9. return APIService.httpPost('doctor/health_index/chart', data);
  10. }
  11. }
  12. window.bodyRecordApis = bodyRecordApis;
  13. })(jQuery)