You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

89 lines
2.7 KiB

  1. @{
  2. ViewBag.Title = "课程表";
  3. Layout = "~/Views/Shared/_Index.cshtml";
  4. }
  5. <link href="~/Content/static/css/TimeTable.css" rel="stylesheet" />
  6. <script src="~/Content/static/js/LodopFuncs.js"></script>
  7. <style>
  8. #table td {
  9. text-align: center !important;
  10. width: 150px !important;
  11. padding: 10px 0;
  12. }
  13. #pdfDom {
  14. /* width: 100%; */
  15. /* overflow-x: auto; */
  16. }
  17. #table {
  18. width: 100%;
  19. /* overflow-x: auto; */
  20. border-spacing: 0;
  21. }
  22. #table tr {
  23. }
  24. #exportReport {
  25. background-color: #409eff;
  26. border-radius: 4px;
  27. width: 100px;
  28. height: 40px;
  29. color: white;
  30. text-align: center;
  31. line-height: 40px;
  32. margin: 50px auto 0;
  33. }
  34. #exportReport:hover {
  35. cursor: pointer;
  36. background-color: #66b1ff;
  37. }
  38. </style>
  39. <style>
  40. .lr-select {
  41. width: 150px;
  42. }
  43. </style>
  44. <div class="lr-layout ">
  45. <div class="lr-layout-center">
  46. <div class="lr-layout-wrap lr-layout-wrap-notitle ">
  47. <div class="lr-layout-tool">
  48. <div class="lr-layout-tool-left">
  49. <div class="lr-layout-tool-item">
  50. <div id="datesearch" class="lr-search-date"></div>
  51. </div>
  52. <div class="lr-layout-tool-item">
  53. <div id="F_SchoolId" type="lrselect" class="lr-select"></div>
  54. </div>
  55. <div class="lr-layout-tool-item">
  56. <div id="ClassNo" type="lrselect" class="lr-select"></div>
  57. </div>
  58. <div class="lr-layout-tool-item">
  59. <div id="EmpNo" type="lrselect" class="lr-select"></div>
  60. </div>
  61. <div class="lr-layout-tool-item">
  62. <a id="lr_search" class="btn btn-primary">查询</a>
  63. </div>
  64. </div>
  65. <div class="lr-layout-tool-right">
  66. <div class=" btn-group btn-group-sm">
  67. <a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i></a>
  68. <a id="lr_export" class="btn btn-default"><i class="fa fa-sign-out">&nbsp;导出</i></a>
  69. </div>
  70. </div>
  71. </div>
  72. <div class="lr-layout-body" style="overflow: auto;">
  73. <div id="pdfDom">
  74. <table id="table" border="1" style="background: #fff"></table>
  75. </div>
  76. @*<div id="exportReport">导出</div>*@
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. @Html.AppendJsFile("/Areas/PersonnelManagement/Views/TimeTable/SchoolLesson.js")