|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- @{
- ViewBag.Title = "课程表";
- Layout = "~/Views/Shared/_Index.cshtml";
- }
- <link href="~/Content/static/css/TimeTable.css" rel="stylesheet" />
- <script src="~/Content/static/js/LodopFuncs.js"></script>
- <style id="style1" media="print">
- * {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
-
- ul {
- margin: 0px;
- padding: 0px;
- list-style: none;
- }
-
- li {
- list-style: none;
- }
-
- table, tr, td {
- cellspacing: 0px;
- cellpadding: 0px;
- padding: 0;
- margin: 0;
- }
-
- body {
- font-family: "Microsoft YaHei", "微软雅黑" !important;
- padding: 10px;
- color: #333;
- font-size: 12px;
- margin: 0;
- }
-
- .personalBox {
- padding: 10px;
- }
-
- .personT {
- font-size: 24px;
- text-align: center;
- margin-bottom: 15px
- }
-
- .perSemester {
- text-align: center;
- border: 1px solid #333;
- line-height: 25px;
- height: 30px;
- }
-
- .perWeek {
- overflow: hidden;
- line-height: 26px;
- height: 30px;
- text-align: center;
- border-left: 1px solid #333;
- border-right: 1px solid #333;
- }
-
- .perWeek li {
- width: 12.5%;
- float: left;
- border-left: 1px solid #333;
- height: 100%;
- }
-
- .perFestivalsBox {
- border-left: 1px solid #333;
- border-right: 1px solid #333;
- border-bottom: 1px solid #333;
- text-align: center;
- }
-
- .perFestivalsBox table {
- display: block;
- width: 100%;
- text-align: center;
- }
-
- .perFestivalsBox td {
- border-left: 1px solid #333;
- border-top: 1px solid #333;
- padding: 1px;
- width: 12.5%;
- font-size: 12px;
- }
-
- .perFestivalsBox td div {
- min-height: 16px;
- line-height: 16px;
- }
-
- .perFestivalsBox td:first-child, .perWeek li:first-child {
- border-left: 0;
- }
- </style>
- <style>
- .lr-select {
- width: 150px;
- }
-
- .perFestivalsBox td.active div.box {
- cursor: pointer;
- }
-
- .perFestivalsBox td.active div.box.active {
- color: blue;
- }
-
- .perFestivalsBox td.active {
- cursor: auto;
- }
-
- .perFestivalsBox td.active:hover {
- color: #333;
- }
- </style>
- <div class="lr-layout ">
- <div class="lr-layout-center">
- <div class="lr-layout-wrap lr-layout-wrap-notitle ">
- <div class="lr-layout-tool">
- <div class="lr-layout-tool-left">
- <div class="lr-layout-tool-item">
- <div id="datesearch" class="lr-search-date"></div>
- </div>
-
- @*<div class="lr-layout-tool-item">
- <div id="F_SchoolId" type="lrselect" class="lr-select"></div>
- </div>*@
- <div class="lr-layout-tool-item">
- <div id="ClassNo" type="lrselect" class="lr-select"></div>
- </div>
- <div class="lr-layout-tool-item">
- <div id="EmpNo" type="lrselect" class="lr-select"></div>
- </div>
- <div class="lr-layout-tool-item">
- <a id="lr_search" class="btn btn-primary">查询</a>
- </div>
-
- </div>
- <div class="lr-layout-tool-right">
- <div class=" btn-group btn-group-sm">
- <a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i></a>
- </div>
- </div>
- </div>
- <div class="lr-layout-body" style="overflow: auto;">
- <div class="warpper">
- <div class="personalBox">
- <div class="personT"></div>
- <div class="perSemester"></div>
- <ul class="perWeek">
- <li>节次/星期</li>
- <li>星期一</li>
- <li>星期二</li>
- <li>星期三</li>
- <li>星期四</li>
- <li>星期五</li>
- <li>星期六</li>
- <li>星期日</li>
- </ul>
- <div class="perFestivalsBox">
- <table cellspacing="0" border="0"></table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- @Html.AppendJsFile("/Areas/PersonnelManagement/Views/TimeTable/IndexInEducationSelect.js")
-
-
|