ADD file via upload

main
ppf2sg6ej 7 months ago
parent 302c7b48ba
commit 3da8bee15c

@ -0,0 +1,78 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>仓库管理系统 - 前端界面</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>仓库管理系统</h1>
</header>
<main>
<!-- 货物管理部分 -->
<section id="goods-management">
<h2>货物管理</h2>
<table id="goods-table">
<thead>
<tr>
<th>货物编号</th>
<th>货物名称</th>
<th>货物类型</th>
<th>库存数量</th>
<th>操作</th>
</tr>
</thead>
<tbody></tbody>
</table>
<button id="add-goods-btn">添加货物</button>
<button id="update-goods-btn">更新货物</button>
<button id="delete-goods-btn">删除货物</button>
</section>
<!-- 仓库管理部分 -->
<section id="warehouse-management">
<h2>仓库管理</h2>
<table id="warehouse-table">
<thead>
<tr>
<th>仓库编号</th>
<th>仓库名称</th>
<th>仓库地址</th>
<th>仓库面积</th>
<th>操作</th>
</tr>
</thead>
<tbody></tbody>
</table>
<button id="add-warehouse-btn">添加仓库</button>
<button id="update-warehouse-btn">更新仓库</button>
<button id="delete-warehouse-btn">删除仓库</button>
</section>
<!-- 订单管理部分 -->
<section id="order-management">
<h2>订单管理</h2>
<table id="order-table">
<thead>
<tr>
<th>订单编号</th>
<th>订单日期</th>
<th>客户名称</th>
<th>订单状态</th>
<th>操作</th>
</tr>
</thead>
<tbody></tbody>
</table>
<button id="add-order-btn">添加订单</button>
<button id="update-order-btn">更新订单</button>
<button id="delete-order-btn">删除订单</button>
</section>
</main>
<script src="script.js"></script>
</body>
</html>
Loading…
Cancel
Save