智慧水务管理系统 - 精河县供水工程综合管理平台

products.html 1.6KB

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>商品管理</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. </head>
  9. <body class="bg-gray-50 min-h-screen">
  10. <nav class="bg-blue-600 text-white shadow-lg">
  11. <div class="container mx-auto px-4 py-4">
  12. <div class="flex justify-between items-center">
  13. <div class="flex items-center space-x-3"><span class="text-2xl">📦</span><h1 class="text-xl font-bold">电商库存管理系统</h1></div>
  14. <div class="flex space-x-4">
  15. <a href="/" class="hover:bg-blue-500 px-3 py-2 rounded">首页</a>
  16. <a href="/shops" class="hover:bg-blue-500 px-3 py-2 rounded">店铺</a>
  17. <a href="/products" class="bg-blue-500 px-3 py-2 rounded">商品</a>
  18. <a href="/inventory" class="hover:bg-blue-500 px-3 py-2 rounded">库存</a>
  19. <a href="/orders" class="hover:bg-blue-500 px-3 py-2 rounded">订单</a>
  20. </div>
  21. </div>
  22. </div>
  23. </nav>
  24. <main class="container mx-auto px-4 py-8">
  25. <div class="flex justify-between items-center mb-8">
  26. <div><h2 class="text-3xl font-bold text-gray-800">📦 商品管理</h2><p class="text-gray-600 mt-2">管理商品信息</p></div>
  27. <button onclick="alert('功能开发中...')" class="bg-green-600 text-white px-6 py-3 rounded-lg">➕ 添加商品</button>
  28. </div>
  29. <div class="bg-white rounded-lg shadow p-6 text-center text-gray-500">商品管理功能开发中... 请先添加商品数据</div>
  30. </main>
  31. </body>
  32. </html>