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.
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>评分系统</title>
|
|
|
|
<link rel='stylesheet' type='text/css' href="./index.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="header">
|
|
|
|
<dl>
|
|
|
|
<dt id="select-text">请选择试卷: </dt>
|
|
|
|
<dd id="select">
|
|
|
|
<select id="select-elem">
|
|
|
|
<option value=1>试题1</option>
|
|
|
|
<option value=2>试题2</option>
|
|
|
|
</select>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
<div id="upload-container">
|
|
|
|
<button id="file-input-button">上传文件</button>
|
|
|
|
<input type="file" id="file-input" accept="application/zip" hidden>
|
|
|
|
<button id="start-score">开始评分</button>
|
|
|
|
</div>
|
|
|
|
<div id="console"></div>
|
|
|
|
<div id="total">
|
|
|
|
<span>总分:</span>
|
|
|
|
<span id="total-score">0分</span>
|
|
|
|
</div>
|
|
|
|
<!-- zip解压 -->
|
|
|
|
<script src="./third/zip-no-worker-inflate.min.js"></script>
|
|
|
|
<!-- 核心代码 -->
|
|
|
|
<script src="./paper/core/Utils.js"></script>
|
|
|
|
<script src="./paper/core/Widget.js"></script>
|
|
|
|
<script src="./paper/core/Report.js"></script>
|
|
|
|
<!-- 试卷评分 -->
|
|
|
|
<script src="./paper/Paper_1.js"></script>
|
|
|
|
<!-- 入口 -->
|
|
|
|
<script src="./index.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|