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.
|
- @{
- 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>
- #table td {
- text-align: center !important;
- width: 150px !important;
- padding: 10px 0;
- }
-
- #pdfDom {
- /* width: 100%; */
- /* overflow-x: auto; */
- }
-
- #table {
- width: 100%;
- /* overflow-x: auto; */
- border-spacing: 0;
- }
-
- #table tr {
- }
-
- #exportReport {
- background-color: #409eff;
- border-radius: 4px;
- width: 100px;
- height: 40px;
- color: white;
- text-align: center;
- line-height: 40px;
- margin: 50px auto 0;
- }
-
- #exportReport:hover {
- cursor: pointer;
- background-color: #66b1ff;
- }
- </style>
- <style>
- .lr-select {
- width: 150px;
- }
- </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>
- <a id="lr_export" class="btn btn-default"><i class="fa fa-sign-out"> 导出</i></a>
- </div>
- </div>
- </div>
- <div class="lr-layout-body" style="overflow: auto;">
- <div id="pdfDom">
- <table id="table" border="1" style="background: #fff"></table>
- </div>
- @*<div id="exportReport">导出</div>*@
- </div>
- </div>
- </div>
- </div>
- @Html.AppendJsFile("/Areas/PersonnelManagement/Views/TimeTable/SchoolLesson.js")
|