-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
40 lines (38 loc) · 1.12 KB
/
Copy pathadmin.html
File metadata and controls
40 lines (38 loc) · 1.12 KB
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="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>📊 打卡记录管理导出</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<header>
<h1>📊 全部打卡记录导出</h1>
<p>管理员导出全部打卡记录</p>
</header>
<main>
<div id="dataContainer">
<table>
<thead>
<tr>
<th>时间</th>
<th>工号</th>
<th>客户单位</th>
<th>拜访内容</th>
<th>照片</th>
</tr>
</thead>
<tbody id="dataBody">
</tbody>
</table>
</div>
</main>
<br>
<button id="exportBtn">导出 CSV</button>
</div>
<script src="js/cloud.js"></script>
<script src="js/app.js"></script>
</body>
</html>