price.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. <style>
  15. body {
  16. margin: 0;
  17. padding: 20px;
  18. background: #fff;
  19. }
  20. #man_zone {
  21. margin-left: 0;
  22. }
  23. </style>
  24. </head>
  25. <body class="clear">
  26. <?php // require_once 'panel.php'; ?>
  27. <div id="man_zone">
  28. <form id="form1" method="post" action="?act=postchk&Keys=<?= $keys ?? '' ?>&Page=<?= $page ?? '' ?>" onSubmit="return false">
  29. <div class="fastSelect clear">
  30. <H1>报价查询</H1>
  31. <div class="selectItem">
  32. <label>区域</label>
  33. <select name="fliterCountry" id="fliterCountry">
  34. <option value="">请选择国家地区</option>
  35. <?php
  36. $result = $conn->query("SELECT id, countryName FROM country WHERE id IN
  37. (SELECT DISTINCT cs_country FROM customer WHERE cs_belong=" . $_SESSION['employee_id'] . ")");
  38. while ($row = $result->fetch_assoc()) {
  39. echo "<option value=\"{$row['id']}\">{$row['countryName']}</option>";
  40. }
  41. ?>
  42. </select>
  43. </div>
  44. <div class="selectItem selectProduct">
  45. <label>产品</label>
  46. <select name="fliterproduct" id="fliterproduct">
  47. <option value="">请选择产品</option>
  48. <?php
  49. $result = $conn->query("SELECT id, ProductName FROM products");
  50. while ($row = $result->fetch_assoc()) {
  51. echo "<option value=\"{$row['id']}\">{$row['ProductName']}</option>";
  52. }
  53. ?>
  54. </select>
  55. </div>
  56. <div class="selectItem selectnum">
  57. <label>数量</label>
  58. <select name="fliternum" id="fliternum">
  59. <option value="">请选择产品</option>
  60. </select>
  61. </div>
  62. </div>
  63. <table width="100%" class="table2">
  64. <tr class="theader">
  65. <th width="15%">产品名称</th>
  66. <th width="15%">图片</th>
  67. <th width="10%">起订数量</th>
  68. <th width="30%">报价管理</th>
  69. <th width="20%">备注</th>
  70. </tr>
  71. <tr id="pricecontrol" class="pricecontrol">
  72. </tr>
  73. </table>
  74. </form>
  75. </div>
  76. </body>
  77. </html>