Home > Article > Backend Development > How to implement the automatic generation function of employee attendance through PHP and Vue
How to realize the automatic generation function of employee attendance through PHP and Vue
Introduction:
Employee attendance is a very important part of enterprise management. Traditional manual Recording attendance data is time-consuming, labor-intensive, and error-prone. With the help of two powerful development tools, PHP and Vue, we can easily realize the automatic generation function of employee attendance and improve the accuracy of attendance data and work efficiency. This article will introduce in detail how to implement the automatic generation function of employee attendance through PHP and Vue, and attach specific code examples.
1. Preparation
2. Back-end development (PHP)
The following is a simplified version of the code example:
<?php // 连接数据库 $conn = new mysqli("localhost", "username", "password", "database"); // 检查连接 if ($conn->connect_error) { die("连接失败: " . $conn->connect_error); } // 接收员工ID和考勤日期 $empId = $_POST["empId"]; $date = $_POST["date"]; // 查询考勤记录 $sql = "SELECT * FROM attendance WHERE emp_id = $empId AND date = $date"; $result = $conn->query($sql); // 如果有记录,则返回已有的数据 if ($result->num_rows > 0) { $row = $result->fetch_assoc(); echo json_encode($row); } else { // 自动生成考勤记录 $insertSql = "INSERT INTO attendance (emp_id, date, clock_in_time, clock_out_time) VALUES ($empId, $date, '09:00:00', '18:00:00')"; if ($conn->query($insertSql) === TRUE) { echo "考勤记录已生成"; } else { echo "生成考勤记录失败: " . $conn->error; } } $conn->close(); ?>
3. Front-end development (Vue)
The following is a simplified version of the code example:
<template> <div> <label for="empId">员工ID:</label> <input type="text" id="empId" v-model="empId"> <label for="date">考勤日期:</label> <input type="date" id="date" v-model="date"> <button @click="submit">提交</button> <p v-if="attendance">上班时间:{{ attendance.clock_in_time }},下班时间:{{ attendance.clock_out_time }}</p> </div> </template> <script> import axios from 'axios'; export default { data() { return { empId: '', date: '', attendance: null } }, methods: { submit() { axios.post('attendance.php', { empId: this.empId, date: this.date }) .then(response => { this.attendance = response.data; }) .catch(error => { console.log(error); }); } } } </script>
4. Run
Summary:
Through the combination of PHP and Vue, we have realized the automatic generation function of employee attendance. PHP is responsible for back-end processing and database interaction, and Vue is responsible for front-end page construction and communication with the back-end. This method can greatly improve the accuracy and work efficiency of employee attendance data, and reduce the errors and tediousness caused by manual recording. Of course, this is just a simplified version of the example, and actual projects need to be appropriately expanded and optimized according to needs. I hope this article will be helpful to readers who are learning and practicing PHP and Vue.
The above is the detailed content of How to implement the automatic generation function of employee attendance through PHP and Vue. For more information, please follow other related articles on the PHP Chinese website!