home-api.js 186 B

123456789
  1. (function(exports) {
  2. var homeAPI = {
  3. baseinfo: function(data) {
  4. return httpRequest.post("doctor/baseinfo", {data: data})
  5. },
  6. }
  7. exports.homeAPI = homeAPI;
  8. })(window)