Commit 4b9536d4c2c93cca1f5224aff5dfc00640ca1358
1 parent
f5451f32
修复报表样式不显示出来问题
修复轻松考报表超链接手型问题
Showing
2 changed files
with
4 additions
and
4 deletions
WebRoot/WEB-INF/jsp/sunvote/teacher/creat_question.jsp
| ... | ... | @@ -14,11 +14,11 @@ |
| 14 | 14 | <head> |
| 15 | 15 | <title>创建试卷</title> |
| 16 | 16 | <!-- 最新版本的 Bootstrap 核心 CSS 文件 --> |
| 17 | - <link rel="stylesheet" href="../static/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |
| 17 | + <link rel="stylesheet" href="../static/css/bootstrap.min.css"> | |
| 18 | 18 | <link rel="stylesheet" href="../static/css/style.css"/> |
| 19 | 19 | <script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script> |
| 20 | 20 | <!-- 最新的 Bootstrap 核心 JavaScript 文件 --> |
| 21 | - <script src="../static/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |
| 21 | + <script src="../static/js/bootstrap.min.js"></script> | |
| 22 | 22 | </head> |
| 23 | 23 | <body> |
| 24 | 24 | <div class="page-header"> | ... | ... |
WebRoot/WEB-INF/jsp/sunvote/teacher/teacher_report_1.jsp
| ... | ... | @@ -78,7 +78,7 @@ |
| 78 | 78 | <th class="center"><div style="width:80px;">课程总分</div></th> |
| 79 | 79 | <c:forEach items="${testpaperList}" var="var" varStatus="vs"> |
| 80 | 80 | <th class="center kc"><a |
| 81 | - onclick="paper('${info.CLASS_ID}','${var.TESTPAPER_ID}');"><div style="width:180px; margin: 0 auto;" class="font">${var.NAME}</br><span>${var.CREATE_DATE}</span></div></a></th> | |
| 81 | + onclick="paper('${info.CLASS_ID}','${var.TESTPAPER_ID}');"><div style="width:180px; margin: 0 auto;cursor:hand" class="font">${var.NAME}</br><span>${var.CREATE_DATE}</span></div></a></th> | |
| 82 | 82 | </c:forEach> |
| 83 | 83 | </tr> |
| 84 | 84 | </thead> |
| ... | ... | @@ -117,7 +117,7 @@ |
| 117 | 117 | <%-- <td class="center"><a |
| 118 | 118 | href="report/student_report?studentid=${var.ID}&class_id=${info.CLASS_ID}">${var.NAME}</a> |
| 119 | 119 | </td> --%> |
| 120 | - <td class="center"><div style="width:150px;"><a | |
| 120 | + <td class="center"><div style="width:150px;cursor:hand"><a | |
| 121 | 121 | onclick="student('${info.CLASS_ID}','${var.ID}')">${var.NAME}</a></div> |
| 122 | 122 | </td> |
| 123 | 123 | <td class="center"><div style="width:150px;"><fmt:formatNumber type="number" | ... | ... |