bs-printview.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. var userID;
  2. var idNum;
  3. var pdfFile;
  4. $(function () {
  5. $("#loading").show();
  6. userID = getUrlParam("userID");
  7. idNum = getUrlParam("idNum");
  8. pdfFile = getUrlParam("pdfFile");
  9. $.post(emisWeb + "/PrintServices/GetPrintTimesByUserID", { userID: userID }, function (res) {
  10. $("#loading").hide();
  11. if (res) {
  12. if (res.CanPrintTimes > 0) {
  13. $("#confirmMessage #title").html(res.Message);
  14. $("#confirmMessage").show();
  15. } else {
  16. showError(res.Message);
  17. }
  18. } else {
  19. showError("您的身份证信息无效,请联系相关老师。");
  20. }
  21. resetTime();
  22. }, 'json');
  23. });
  24. function print() {
  25. $("#loading").show();
  26. $("[name='pdfFile']").val(pdfFile);
  27. $("[name='userID']").val(userID);
  28. $(document.forms[0]).submit();
  29. // $("#loading").show();
  30. // $.post(rootPath + "/Home/Print", { userID: userID }, function (res) {
  31. // if (res.IsSuccess) {
  32. // $("#loading").hide();
  33. // showError("打印完成,请取走您的成绩单。");
  34. // $.post(emisWeb + "/PrintServices/Count", { userID: userID }, function (res) {
  35. // resetTime();
  36. // }, 'json');
  37. // } else {
  38. // showError("打印失败:" + res.Message + ",请联系管理员。");
  39. // }
  40. // resetTime();
  41. // });
  42. }
  43. function cancel() {
  44. location.href = rootPath + "/Home/screensaver";
  45. }