3eapi/target/3eapi-0.0.1-SNAPSHOT/checkWorkShare.html
2026-03-10 16:40:19 +08:00

57 lines
1.7 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>3E口语分享-班级作业分享</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" type="text/css" href="style/checkWorkShare.css" />
<script src="script/rem-min.js"></script>
<script type="text/javascript" src="script/jquery-1.11.1.js"></script>
<script type="text/javascript" src="script/checkWorkShare.js"></script>
<script type="text/javascript">
var width = document.documentElement.clientWidth;
$(function(){
function getParameter(param){
var query = window.location.search;
var iLen = param.length;
var iStart = query.indexOf(param);
if (iStart == -1)
  return "";
iStart += iLen + 1;
var iEnd = query.indexOf("&", iStart);
if (iEnd == -1)
  return query.substring(iStart);
return query.substring(iStart, iEnd);
}
var action = getParameter("action");
action = encodeURIComponent(action);
getAssignAnswerList(action);
var fontsize = width/375*12;
$('body').css('font-size',fontsize+'px');
})
</script>
</head>
<body>
<div class="headDiv">
<div class="className" id="classesName">策腾中学</div>
<div class="classScore">
<table class="classTab">
<tbody>
<tr>
<td>班级最高分:<a id="classMaxScore">100</a></td>
<td>班级平均分:<a id="classAVG">100</a></td>
</tr>
<tr>
<td><a id="finish" class="tbodyTitle">完成</a>人数:<a id="finishCount">100</a></td>
<td><a id="unFinish">未完成</a>人数:<a id="unFinishCount">100</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="scoreBody" id="scoreBodyId">
</div>
</body>
</html>