


How to use PHP and Vue to develop the price management function of warehouse management
In modern logistics warehousing management, price management is a crucial function. It can help warehouse managers and logistics personnel accurately manage the pricing information of inventory items for reasonable pricing and profit control of goods. This article will introduce how to use PHP and Vue to develop the price management function in the warehouse management system, and provide specific code examples.
1. Preparation
Before you start, make sure you have installed the development environment of PHP and Vue. You can use any code editor you like to write code.
2. Create a database table
First, we need to create a database table to store price information. Suppose our table is named prices
and contains the following fields:
-
id
: the unique identifier of the price record, auto-increment type -
product_name
: Product name, string type -
#price
: Price, floating point type -
created_at
: Record creation Time, date time type -
updated_at
: Record update time, date time type
You can use the following SQL statement to create a database table:
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;
3. Writing the back-end interface
Next, we need to use PHP to write the back-end interface to handle the price management function. Create a PHP file price.php
and add the following code:
<?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(); ?>
Make sure to replace your_database_name
with your database name and modify the database connection information as needed.
4. Writing the front-end page
We will use Vue to write the front-end page. Create an HTML file index.html
and add the following code:
<!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 id="价格管理">价格管理</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>
5. Run the project
and change price.php
and index.html
Put the file into the website directory of your server and start the server. Then open the browser and visit index.html
, and you will see a simple price management page.
On the page, you can enter the product name and price, and click the Add button to add a new price record. Click the Edit button to modify the price record information. Click the Delete button to delete the price record.
6. Summary
In this article, we used PHP and Vue to develop the price management function in a simple warehouse management system. Through this function, warehouse administrators can easily manage product pricing information and achieve reasonable pricing and profit control. By writing the back-end interface and front-end page, we show how to use PHP and Vue to implement this function, and provide detailed code examples. Hope this article is helpful to you!
The above is the detailed content of How to use PHP and Vue to develop price management functions for warehouse management. For more information, please follow other related articles on the PHP Chinese website!

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
