1234567891011121314 |
- (function() {
- var bodyRecordApis = {
- // 最后一条数据,用来推算时间
- getBodyRecoredLast: function(data) {
- return APIService.httpGet('doctor/health_index/last', data);
- },
- // 获取记录
- getBodyRecordData: function(data) {
- return APIService.httpPost('doctor/health_index/chart', data);
- }
- }
- window.bodyRecordApis = bodyRecordApis;
- })(jQuery)
|