record-api.js 210 B

123456789
  1. (function(exports) {
  2. var recordAPI = {
  3. //咨询
  4. consultList: function(data) {
  5. return httpRequest.post("doctor/consult/list_by_team", {data: data})
  6. }
  7. }
  8. exports.recordAPI = recordAPI;
  9. })(window)