123456789101112131415 |
- (function (b) {
- config.init();
- var a = {
- hospitalId: Fx.getUrlParam("hospitalId"),
- deptId: Fx.getUrlParam("deptId"),
- doctorId: Fx.getUrlParam("doctorId"),
- regDate: Fx.getUrlParam("regDate"),
- timeFlag: Fx.getUrlParam("timeFlag"),
- regFee: Fx.getUrlParam("regFee"),
- treatFee: Fx.getUrlParam("treatFee")
- };
- b("header p").html(new Date().toDate(a.regDate).format("yyyy年M月dd日") + b("header p").html());
- hzAPI.getData(window.apiUrl + "?c=Index&a=doctorInfo", a, "#list ul");
- hzAPI.getData(window.apiUrl + "?c=ReqHis&a=getTimeRegInfo", a, "#list1 ul", 1, true, null, true)
- })(Zepto);
|