jiuzhen-api.js 685 B

12345678910111213141516171819202122232425
  1. (function(exports) {
  2. var jiuzhenAPI = {
  3. // 我的就诊
  4. getRemind: function(data) {
  5. return httpRequest.get("basic/api/v1.0/MessageRemindByNotifie", {
  6. data: data
  7. })
  8. }, //查询挂号单列表
  9. queryRegOrderInfos: function(data) {
  10. return httpRequest.get("basic/api/v1.0/appointment/registration/search", {
  11. data: data
  12. });
  13. }, //查询挂号单详情
  14. getRegOrderInfo: function(data) {
  15. return httpRequest.get("basic/api/v1.0/appointment/registration/" + data);
  16. },
  17. cancelOrder: function(data) {
  18. return httpRequest.get("basic/api/v1.0/appointment/registration/updateState", {
  19. data: data
  20. });
  21. },
  22. }
  23. exports.jiuzhenAPI = jiuzhenAPI;
  24. })(window)