doctorBookingSchedule.min.js 661 B

123456789101112131415
  1. (function (b) {
  2. config.init();
  3. var a = {
  4. hospitalId: Fx.getUrlParam("hospitalId"),
  5. deptId: Fx.getUrlParam("deptId"),
  6. doctorId: Fx.getUrlParam("doctorId"),
  7. regDate: Fx.getUrlParam("regDate"),
  8. timeFlag: Fx.getUrlParam("timeFlag"),
  9. regFee: Fx.getUrlParam("regFee"),
  10. treatFee: Fx.getUrlParam("treatFee")
  11. };
  12. b("header p").html(new Date().toDate(a.regDate).format("yyyy年M月dd日") + b("header p").html());
  13. hzAPI.getData(window.apiUrl + "?c=Index&a=doctorInfo", a, "#list ul");
  14. hzAPI.getData(window.apiUrl + "?c=ReqHis&a=getTimeRegInfo", a, "#list1 ul", 1, true, null, true)
  15. })(Zepto);