如何以PHP和Vue開發倉庫管理的價格管理功能
在現代物流倉儲管理中,價格管理是一項至關重要的功能。它可以幫助倉庫管理員和物流人員準確管理庫存物品的定價信息,以便對貨物進行合理定價和利潤控制。本文將介紹如何使用PHP和Vue開發倉庫管理系統中的價格管理功能,並提供具體的程式碼範例。
一、準備工作
在開始之前,確保你已經安裝了PHP和Vue的開發環境。你可以使用任何喜歡的程式碼編輯器來編寫程式碼。
二、建立資料庫表
首先,我們需要建立一個資料庫表來儲存價格資訊。假設我們的表名為prices
,包含以下欄位:
id
:價格記錄的唯一標識符,自增類型product_name
:產品名稱,字串類型price
:價格,浮點數類型created_at
:記錄創建時間,日期時間型別updated_at
:記錄更新時間,日期時間型別你可以使用下列SQL語句建立資料庫表:
CREATE TABLE `prices` ( `id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `product_name` VARCHAR(255) NOT NULL, `price` FLOAT NOT NULL, `created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP, `updated_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=INNODB;
三、寫後端介面
接下來,我們需要使用PHP編寫後端介面來處理價格管理功能。建立一個PHP檔案price.php
,加入以下程式碼:
<?php header('Content-Type: application/json'); // 连接数据库 $servername = "localhost"; $username = "root"; $password = "password"; $dbname = "your_database_name"; $conn = new mysqli($servername, $username, $password, $dbname); if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } // 获取所有价格记录 if ($_SERVER['REQUEST_METHOD'] === 'GET') { $sql = "SELECT * FROM `prices`"; $result = $conn->query($sql); if ($result->num_rows > 0) { $prices = []; while ($row = $result->fetch_assoc()) { $prices[] = $row; } echo json_encode($prices); } else { echo "[]"; } } // 添加价格记录 if ($_SERVER['REQUEST_METHOD'] === 'POST') { $product_name = $_POST['product_name']; $price = $_POST['price']; $sql = "INSERT INTO `prices` (`product_name`, `price`) VALUES ('$product_name', '$price')"; if ($conn->query($sql) === TRUE) { echo "Price record created successfully"; } else { echo "Error: " . $sql . "<br>" . $conn->error; } } // 更新价格记录 if ($_SERVER['REQUEST_METHOD'] === 'PUT') { parse_str(file_get_contents("php://input"), $put_vars); $id = $put_vars['id']; $product_name = $put_vars['product_name']; $price = $put_vars['price']; $sql = "UPDATE `prices` SET `product_name`='$product_name', `price`='$price', `updated_at`=CURRENT_TIMESTAMP WHERE `id`='$id'"; if ($conn->query($sql) === TRUE) { echo "Price record updated successfully"; } else { echo "Error: " . $sql . "<br>" . $conn->error; } } // 删除价格记录 if ($_SERVER['REQUEST_METHOD'] === 'DELETE') { parse_str(file_get_contents("php://input"), $delete_vars); $id = $delete_vars['id']; $sql = "DELETE FROM `prices` WHERE `id`='$id'"; if ($conn->query($sql) === TRUE) { echo "Price record deleted successfully"; } else { echo "Error: " . $sql . "<br>" . $conn->error; } } $conn->close(); ?>
確保將your_database_name
替換為你的資料庫名,並根據需要修改資料庫連線資訊。
四、寫前端頁面
我們將使用Vue來寫前端頁面。建立一個HTML檔案index.html
,加入以下程式碼:
<!DOCTYPE html> <html> <head> <title>价格管理</title> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script> </head> <body> <div id="app"> <h1>价格管理</h1> <form @submit.prevent="addPrice"> <input type="text" placeholder="产品名称" v-model="newPrice.product_name" required> <input type="number" step="0.01" placeholder="价格" v-model="newPrice.price" required> <button type="submit">添加</button> </form> <table> <thead> <tr> <th>产品名称</th> <th>价格</th> <th>操作</th> </tr> </thead> <tbody> <tr v-for="price in prices" :key="price.id"> <td>{{ price.product_name }}</td> <td>{{ price.price }}</td> <td> <button @click="editPrice(price)">编辑</button> <button @click="deletePrice(price)">删除</button> </td> </tr> </tbody> </table> </div> <script> new Vue({ el: '#app', data: { prices: [], newPrice: { product_name: '', price: '' }, editPrice: { id: '', product_name: '', price: '' } }, created: function() { this.getPrices(); }, methods: { getPrices: function() { axios.get('price.php') .then(function(response) { this.prices = response.data; }.bind(this)) .catch(function(error) { console.log(error); }); }, addPrice: function() { axios.post('price.php', this.newPrice) .then(function(response) { console.log(response.data); this.getPrices(); this.newPrice.product_name = ''; this.newPrice.price = ''; }.bind(this)) .catch(function(error) { console.log(error); }); }, editPrice: function(price) { this.editPrice.id = price.id; this.editPrice.product_name = price.product_name; this.editPrice.price = price.price; }, updatePrice: function() { axios.put('price.php', this.editPrice) .then(function(response) { console.log(response.data); this.getPrices(); this.editPrice.id = ''; this.editPrice.product_name = ''; this.editPrice.price = ''; }.bind(this)) .catch(function(error) { console.log(error); }); }, deletePrice: function(price) { axios.delete('price.php', { data: price }) .then(function(response) { console.log(response.data); this.getPrices(); }.bind(this)) .catch(function(error) { console.log(error); }); } } }); </script> </body> </html>
五、執行專案
將price.php
和index.html
檔案放入你的伺服器的網站目錄中,並啟動伺服器。然後開啟瀏覽器存取index.html
,你將會看到一個簡單的價格管理頁面。
在頁面上,你可以輸入產品名稱和價格,點選新增按鈕來新增新的價格記錄。點選編輯按鈕可以修改價格記錄的資訊。點選刪除按鈕可以刪除價格記錄。
六、總結
在這篇文章中,我們使用PHP和Vue開發了一個簡單的倉庫管理系統中的價格管理功能。透過這個功能,倉庫管理員可以方便地管理產品的定價訊息,並實現合理定價和利潤控制。透過對後端介面和前端頁面的編寫,我們展示瞭如何使用PHP和Vue來實現這個功能,並提供了詳細的程式碼範例。希望這篇文章對你有幫助!
以上是如何用PHP和Vue開發倉庫管理的價格管理功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!