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.
 
 
 
 
 
 

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