-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.html
40 lines (37 loc) · 1.26 KB
/
display.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>问卷项目展示页</title>
<link rel="stylesheet" type="text/css" href="./css/base.css">
<link rel="stylesheet" type="text/css" href="./css/creatSelect.css">
<link rel="stylesheet" type="text/css" href="./css/display.css">
<script type="text/javascript" src="./js/libs/jquery-3.1.0.js"></script>
<script type="text/javascript" src="./js/libs/store.js"></script>
<script type="text/javascript" src="./js/creatDisplayPage.js"></script>
</head>
<body>
<div class="header clear">
<a href="./display.html" class="fl">问卷管理</a>
<a href="./index.html" class="fl">我的问卷</a>
</div>
<div class="display-compile">
<table width="800" border="1" align="center" cellpadding="0" cellspacing="0">
<thead>
<td>标题</td>
<td>时间</td>
<td>操作</td>
</thead>
<tbody>
</tbody>
</table>
<div class="control">
<div class="selectAll fl">
<input type="checkbox">
<span>全选</span>
</div>
<div class="delete fl">删除</div>
</div>
</div>
</body>
</html>