50 lines
1.7 KiB
HTML
50 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>我的问卷</title>
|
|
<link rel="stylesheet" href="../css/myQuestion.css">
|
|
<script src="../js/myQuestion.js"></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<i class="quesen">?</i>
|
|
<div class="title">问卷管理</div>
|
|
<div class="nav-bar">
|
|
<a href="myQuestion.html">我的问卷</a>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
<div class="box">
|
|
<div class="grid-item-add" style="cursor: pointer;">+ 新建问卷</div>
|
|
<table>
|
|
<tr>
|
|
<th style="width: 30%;">
|
|
<div class="grid-item-title" style="margin-left: 20px;">问卷标题</div>
|
|
</th>
|
|
<th style="width: 60%;">
|
|
<div class="thtitle">
|
|
<span class="thadd">创建日期</span>
|
|
<span class="thadd">发布日期</span>
|
|
<span class="thadd">截止日期</span>
|
|
<span class="thadd">问卷状态</span>
|
|
<span class="thadd">操作区域</span>
|
|
</div>
|
|
</th>
|
|
</tr>
|
|
</table>
|
|
<div class="ctrl-all box" style="
|
|
background-color: #EBEBEB;
|
|
box-shadow: 1px 2px 2px rgba(0,0,0,0.4);
|
|
padding: 10px;
|
|
width: 100%;
|
|
">
|
|
<input type="checkbox">
|
|
<span>全选</span>
|
|
<button>删除问卷</button>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html> |