price.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. ?>
  5. <!DOCTYPE html>
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <title>管理区域</title>
  10. <link rel="stylesheet" href="css/common.css" type="text/css" />
  11. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  12. <script src="system/js/jquery-1.7.2.min.js"></script>
  13. <script src="js/js.js"></script>
  14. </head>
  15. <body class="clear">
  16. <?php require_once 'panel.php'; ?>
  17. <div id="man_zone">
  18. <form id="form1" method="post" action="?act=postchk&Keys=<?= $keys ?? '' ?>&Page=<?= $page ?? '' ?>" onSubmit="return false">
  19. <div class="fastSelect clear">
  20. <H1>报价查询</H1>
  21. <div class="selectItem">
  22. <label>区域</label>
  23. <select name="fliterCountry" id="fliterCountry">
  24. <option value="">请选择国家地区</option>
  25. <?php
  26. $result = $conn->query("SELECT id, countryName FROM country WHERE id IN
  27. (SELECT DISTINCT cs_country FROM customer WHERE cs_belong=" . $_SESSION['employee_id'] . ")");
  28. while ($row = $result->fetch_assoc()) {
  29. echo "<option value=\"{$row['id']}\">{$row['countryName']}</option>";
  30. }
  31. ?>
  32. </select>
  33. </div>
  34. <div class="selectItem selectProduct">
  35. <label>产品</label>
  36. <select name="fliterproduct" id="fliterproduct">
  37. <option value="">请选择产品</option>
  38. <?php
  39. $result = $conn->query("SELECT id, ProductName FROM Products");
  40. while ($row = $result->fetch_assoc()) {
  41. echo "<option value=\"{$row['id']}\">{$row['ProductName']}</option>";
  42. }
  43. ?>
  44. </select>
  45. </div>
  46. <div class="selectItem selectnum">
  47. <label>数量</label>
  48. <select name="fliternum" id="fliternum">
  49. <option value="">请选择产品</option>
  50. </select>
  51. </div>
  52. </div>
  53. <table width="100%" class="table2">
  54. <tr class="theader">
  55. <th width="15%">产品名称</th>
  56. <th width="15%">图片</th>
  57. <th width="10%">起订数量</th>
  58. <th width="30%">报价管理</th>
  59. <th width="20%">备注</th>
  60. </tr>
  61. <tr id="pricecontrol" class="pricecontrol">
  62. </tr>
  63. </table>
  64. </form>
  65. </div>
  66. </body>
  67. </html>