-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (46 loc) · 1.83 KB
/
Copy pathindex.html
File metadata and controls
53 lines (46 loc) · 1.83 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
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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 class="subtitle">记录客户拜访打卡,数据安全保存在云端</p>
</header>
<main>
<div class="form-group">
<label for="empId">👤 你的工号</label>
<input type="text" id="empId" placeholder="请输入你的工号">
<button id="loginBtn">登录</button>
</div>
<div id="checkinForm" style="display: none;">
<div class="form-group">
<label for="customerUnit">🏢 客户单位</label>
<input type="text" id="customerUnit" placeholder="请输入客户单位名称">
</div>
<div class="form-group">
<label for="visitContent">📝 拜访内容</label>
<textarea id="visitContent" placeholder="请输入本次拜访主要内容"></textarea>
</div>
<div class="form-group">
<label for="photoUpload">📷 现场照片</label>
<input type="file" id="photoUpload" accept="image/*">
<div id="photoPreview"></div>
</div>
<button id="submitBtn">提交打卡</button>
</div>
<div id="historyList">
<h3>📋 我的打卡记录</h3>
<div id="historyContainer"></div>
</div>
</main>
</div>
<script src="js/cloud.js"></script>
<script src="js/app.js"></script>
</body>
</html>