temp-api.js 423 B

1234567891011121314
  1. (function(exports) {
  2. var tempAPI = {
  3. getPatient: function(data) {
  4. return httpRequest.get("doctor/patient_label_info/patient",{data:data})
  5. },
  6. getDoctorTeam: function(uid) {
  7. return httpRequest.get('doctor/admin-teams/team/'+uid+'/teams')
  8. },
  9. patientLabel: function(data) {
  10. return httpRequest.post("doctor/patient_label_info/patient_label", {data: data})
  11. },
  12. }
  13. exports.tempAPI = tempAPI;
  14. })(window)