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.
 
 
 
 
 
 

176 lines
4.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 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 {
  93. cursor: auto;
  94. }
  95. .perFestivalsBox td.active:hover {
  96. color: #333;
  97. }
  98. .perFestivalsBox td.active div.box {
  99. cursor: pointer;
  100. }
  101. .perFestivalsBox td.active div.box:hover {
  102. color: #0026ff;
  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="EmpNo" type="lrselect" class="lr-select"></div>
  115. </div>
  116. <div class="lr-layout-tool-item">
  117. <a id="lr_search" class="btn btn-primary">查询</a>
  118. </div>
  119. </div>
  120. <div class="lr-layout-tool-right">
  121. <div class=" btn-group btn-group-sm">
  122. <a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i></a>
  123. </div>
  124. <div class=" btn-group btn-group-sm">
  125. <a id="lr_change" class="btn btn-default"><i class="fa fa-eye">&nbsp;修改教师课程记录</i></a>
  126. </div>
  127. </div>
  128. </div>
  129. <div class="lr-layout-body" style="overflow: auto;">
  130. <div class="warpper">
  131. <div class="personalBox">
  132. <div class="personT"></div>
  133. <div class="perSemester"></div>
  134. <ul class="perWeek">
  135. <li>节次/星期</li>
  136. <li>星期一</li>
  137. <li>星期二</li>
  138. <li>星期三</li>
  139. <li>星期四</li>
  140. <li>星期五</li>
  141. <li>星期六</li>
  142. <li>星期日</li>
  143. </ul>
  144. <div class="perFestivalsBox">
  145. <table cellspacing="0" border="0"></table>
  146. </div>
  147. </div>
  148. </div>
  149. </div>
  150. </div>
  151. </div>
  152. </div>
  153. @Html.AppendJsFile("/Areas/PersonnelManagement/Views/TimeTable/IndexInEducationModify.js")