PHP と Vue を組み合わせて従業員の勤怠の遅刻と早退の統計機能を実現する方法
現代の企業管理において、勤怠管理は非常に重要なタスクです。従業員の勤怠を効率的にカウントするために、PHP と Vue を使用して遅刻と早退の統計機能を実装できます。以下では、これら 2 つのツールを使用して簡単な勤怠管理システムを構築する方法と、具体的なコード例を紹介します。
あなた実際のニーズに応じてテーブルに追加できます。従業員名、部門などの他のフィールドも追加できます。
$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 出席";
$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>