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.
 
 
 
 
 
 

160 lines
4.2 KiB

  1. @{
  2. ViewBag.Title = "班级课程表";
  3. Layout = "~/Views/Shared/_Index.cshtml";
  4. }
  5. <link href="~/Content/static/css/TimeTable.css" rel="stylesheet" />
  6. <style id="style1" media="print">
  7. * {
  8. -webkit-box-sizing: border-box;
  9. -moz-box-sizing: border-box;
  10. box-sizing: border-box;
  11. }
  12. ul {
  13. margin: 0px;
  14. padding: 0px;
  15. list-style: none;
  16. }
  17. li {
  18. list-style: none;
  19. }
  20. table, tr, td {
  21. cellspacing: 0px;
  22. cellpadding: 0px;
  23. padding: 0;
  24. margin: 0;
  25. }
  26. body {
  27. font-family: "Microsoft YaHei", "微软雅黑" !important;
  28. padding: 10px;
  29. color: #333;
  30. font-size: 12px;
  31. margin: 0;
  32. }
  33. .personalBox {
  34. padding: 10px;
  35. }
  36. .personT {
  37. font-size: 24px;
  38. text-align: center;
  39. margin-bottom: 15px
  40. }
  41. .perSemester {
  42. text-align: center;
  43. border: 1px solid #333;
  44. line-height: 25px;
  45. height: 30px;
  46. }
  47. .perWeek {
  48. overflow: hidden;
  49. line-height: 26px;
  50. height: 30px;
  51. text-align: center;
  52. border-left: 1px solid #333;
  53. border-right: 1px solid #333;
  54. }
  55. .perWeek li {
  56. width: 12.5%;
  57. float: left;
  58. border-left: 1px solid #333;
  59. height: 100%;
  60. }
  61. .perFestivalsBox {
  62. border-left: 1px solid #333;
  63. border-right: 1px solid #333;
  64. border-bottom: 1px solid #333;
  65. text-align: center;
  66. }
  67. .perFestivalsBox table {
  68. display: block;
  69. width: 100%;
  70. text-align: center;
  71. }
  72. .perFestivalsBox td {
  73. border-left: 1px solid #333;
  74. border-top: 1px solid #333;
  75. padding: 1px;
  76. width: 12.5%;
  77. font-size: 12px;
  78. }
  79. .perFestivalsBox td div {
  80. min-height: 16px;
  81. line-height: 16px;
  82. }
  83. .perFestivalsBox td:first-child, .perWeek li:first-child {
  84. border-left: 0;
  85. }
  86. </style>
  87. <style>
  88. .lr-select {
  89. width: 150px;
  90. }
  91. </style>
  92. <div class="lr-layout ">
  93. <div class="lr-layout-center">
  94. <div class="lr-layout-wrap lr-layout-wrap-notitle ">
  95. <div class="lr-layout-tool">
  96. <div class="lr-layout-tool-left">
  97. <div class="lr-layout-tool-item">
  98. <div id="datesearch" class="lr-search-date"></div>
  99. </div>
  100. <div class="lr-layout-tool-item">
  101. <div id="F_SchoolId" type="lrselect" class="lr-select"></div>
  102. </div>
  103. <div class="lr-layout-tool-item">
  104. <div id="ClassNo" type="lrselect" class="lr-select"></div>
  105. </div>
  106. <div class="lr-layout-tool-item">
  107. <a id="lr_search" class="btn btn-primary">查询</a>
  108. </div>
  109. </div>
  110. <div class="lr-layout-tool-right">
  111. <div class=" btn-group btn-group-sm">
  112. <a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i></a>
  113. </div>
  114. </div>
  115. </div>
  116. <div class="lr-layout-body" style="overflow: auto;">
  117. <div class="warpper">
  118. <div class="personalBox">
  119. <div class="personT"></div>
  120. <div class="perSemester"></div>
  121. <ul class="perWeek">
  122. <li>节次/星期</li>
  123. <li>星期一</li>
  124. <li>星期二</li>
  125. <li>星期三</li>
  126. <li>星期四</li>
  127. <li>星期五</li>
  128. <li>星期六</li>
  129. <li>星期日</li>
  130. </ul>
  131. <div class="perFestivalsBox">
  132. <table cellspacing="0" border="0"></table>
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137. </div>
  138. </div>
  139. </div>
  140. @Html.AppendJsFile("/Areas/PersonnelManagement/Views/TimeTable/ClassIndexInEducation.js")