var userID; var idNum; var pdfFile; $(function () { $("#loading").show(); userID = getUrlParam("userID"); idNum = getUrlParam("idNum"); pdfFile = getUrlParam("pdfFile"); $.post(emisWeb + "/PrintServices/GetPrintTimesByUserID", { userID: userID }, function (res) { $("#loading").hide(); if (res) { if (res.CanPrintTimes > 0) { $("#confirmMessage #title").html(res.Message); $("#confirmMessage").show(); } else { showError(res.Message); } } else { showError("您的身份证信息无效,请联系相关老师。"); } resetTime(); }, 'json'); }); function print() { $("#loading").show(); $("[name='pdfFile']").val(pdfFile); $("[name='userID']").val(userID); $(document.forms[0]).submit(); // $("#loading").show(); // $.post(rootPath + "/Home/Print", { userID: userID }, function (res) { // if (res.IsSuccess) { // $("#loading").hide(); // showError("打印完成,请取走您的成绩单。"); // $.post(emisWeb + "/PrintServices/Count", { userID: userID }, function (res) { // resetTime(); // }, 'json'); // } else { // showError("打印失败:" + res.Message + ",请联系管理员。"); // } // resetTime(); // }); } function cancel() { location.href = rootPath + "/Home/screensaver"; }