如何结合PHP和Vue实现员工考勤的迟到早退统计功能
在现代企业管理中,考勤管理是一项非常重要的工作。为了能够高效地统计员工的考勤情况,我们可以使用PHP和Vue来实现迟到早退统计功能。下面将介绍如何使用这两个工具来构建一个简单的考勤管理系统,并提供具体的代码示例。
你可以根据实际需求,在表中添加其他字段,例如员工姓名、所属部门等。
$servername = "localhost";
$username = "your_username";
$password = "your_password";
$dbname = "your_database";
// 创建数据库连接
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// 查询考勤记录
$sql = "SELECT * FROM attendance";
$result = $conn->query($sql);
// 处理查询结果
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) { // 处理每一条记录 }
} else {
echo "0 results";
}
// 关闭数据库连接
$conn->close();
?>
<table>
<thead>
<tr>
<th>员工姓名</th>
<th>考勤日期</th>
<th>上班时间</th>
<th>下班时间</th>
</tr>
</thead>
<tbody>
<tr v-for="record in attendanceData">
<td>{{ record.employeeName }}</td>
<td>{{ record.date }}</td>
<td>{{ record.inTime }}</td>
<td>{{ record.outTime }}</td>
</tr>
</tbody>
</table>