如何使用PHP實作微信小程式的任務審核功能?
隨著微信小程式的普及和發展,越來越多的企業和組織開始在小程式上建立自己的業務系統。其中,任務審批功能是一項常見的需求。本文將介紹如何使用PHP語言來實作微信小程式的任務審核功能,並提供具體的程式碼範例。
一、準備工作
在開始之前,我們需要先準備以下環境和資源:
二、資料庫設計
在開始編寫程式碼之前,我們需要先設計資料庫表結構,來儲存任務的資訊和審核記錄。
三、後端程式碼實作
連接資料庫
<?php $servername = "localhost"; $username = "your_username"; $password = "your_password"; $dbname = "your_database"; $conn = new mysqli($servername, $username, $password, $dbname); if ($conn->connect_error) { die("连接失败: " . $conn->connect_error); } ?>
建立任務
<?php $task_name = $_POST['task_name']; $task_content = $_POST['task_content']; $creator_id = $_POST['creator_id']; $approver_id = $_POST['approver_id']; $sql = "INSERT INTO task (task_name, task_content, creator_id, approver_id, status, create_time) VALUES ('$task_name', '$task_content', '$creator_id', '$approver_id', 'pending', NOW())"; if ($conn->query($sql) === TRUE) { $result = array('code' => 200, 'message' => '任务创建成功'); } else { $result = array('code' => 500, 'message' => '任务创建失败'); } echo json_encode($result); ?>
查詢任務清單
<?php $creator_id = $_GET['creator_id']; $sql = "SELECT * FROM task WHERE creator_id = '$creator_id'"; $result = $conn->query($sql); if ($result->num_rows > 0) { $tasks = array(); while($row = $result->fetch_assoc()) { $tasks[] = $row; } $result = array('code' => 200, 'message' => '查询成功', 'data' => $tasks); } else { $result = array('code' => 500, 'message' => '查询失败'); } echo json_encode($result); ?>
審查任務
<?php $history_id = $_POST['history_id']; $task_id = $_POST['task_id']; $approver_id = $_POST['approver_id']; $result = $_POST['result']; $sql = "INSERT INTO approval_history (history_id, task_id, approver_id, approval_time, result) VALUES ('$history_id', '$task_id', '$approver_id', NOW(), '$result')"; if ($conn->query($sql) === TRUE) { // 更新任务状态 $update_sql = "UPDATE task SET status = '$result' WHERE task_id = '$task_id'"; $conn->query($update_sql); $result = array('code' => 200, 'message' => '审批成功'); } else { $result = array('code' => 500, 'message' => '审批失败'); } echo json_encode($result); ?>
四、小程式端程式碼實作
建立任務頁面(createTask)
Page({ data: { task_name: '', task_content: '', creator_id: '', approver_id: '', }, createTask: function() { wx.request({ url: 'https://your_domain.com/create_task.php', method: 'POST', data: { task_name: this.data.task_name, task_content: this.data.task_content, creator_id: this.data.creator_id, approver_id: this.data.approver_id, }, success: function(res) { console.log(res.data); if (res.data.code === 200) { wx.showToast({ title: '任务创建成功', }); } else { wx.showToast({ title: '任务创建失败', icon: 'none', }); } }, fail: function() { wx.showToast({ title: '请求失败', icon: 'none', }); }, }); }, });
#查詢任務清單頁面(taskList)
Page({ data: { creator_id: '', tasks: [], }, onLoad: function() { var that = this; wx.request({ url: 'https://your_domain.com/query_task.php', data: { creator_id: this.data.creator_id, }, success: function(res) { console.log(res.data); if (res.data.code === 200) { that.setData({ tasks: res.data.data, }); } else { wx.showToast({ title: '查询失败', icon: 'none', }); } }, fail: function() { wx.showToast({ title: '请求失败', icon: 'none', }); }, }); }, });
審批任務頁面( approveTask)
Page({ data: { history_id: '', task_id: '', approver_id: '', result: '', }, approveTask: function() { wx.request({ url: 'https://your_domain.com/approve_task.php', method: 'POST', data: { history_id: this.data.history_id, task_id: this.data.task_id, approver_id: this.data.approver_id, result: this.data.result, }, success: function(res) { console.log(res.data); if (res.data.code === 200) { wx.showToast({ title: '审批成功', }); } else { wx.showToast({ title: '审批失败', icon: 'none', }); } }, fail: function() { wx.showToast({ title: '请求失败', icon: 'none', }); }, }); }, });
以上是使用PHP實作微信小程式的任務審核功能的簡單範例。當然,實際應用程式還需要考慮更多的情況,例如資料驗證、使用者權限等。希望能對大家有幫助。
以上是如何使用PHP實作微信小程式的任務審核功能?的詳細內容。更多資訊請關注PHP中文網其他相關文章!