add_product.php 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <?php
  2. require_once('conn.php');
  3. require_once('functions.php');
  4. // Check login status
  5. checkLogin("信息管理");
  6. // Initialize variables
  7. $product_name = '';
  8. $product_img = '';
  9. $unit = '';
  10. $moq = '';
  11. $category_id = isset($_GET['category_id']) ? intval($_GET['category_id']) : 0;
  12. $note = '';
  13. $tips = '';
  14. $keys = isset($_GET['Keys']) ? urlencode($_GET['Keys']) : '';
  15. $page = isset($_GET['Page']) ? $_GET['Page'] : 1;
  16. // Get the return URL
  17. $href_str = "products.php?keys=" . $keys . "&Page=" . $page;
  18. if ($category_id) {
  19. $href_str .= "&category_id=" . $category_id;
  20. }
  21. ?>
  22. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  23. <html xmlns="http://www.w3.org/1999/xhtml">
  24. <head>
  25. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  26. <title>添加产品</title>
  27. <link rel="stylesheet" href="css/common.css" type="text/css" />
  28. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  29. <script type="text/javascript" src="js/js.js"></script>
  30. <script type="text/javascript" src="js/SearchArea.js"></script>
  31. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  32. <style>
  33. /* Styles for specification section */
  34. .specifications {
  35. margin-bottom: 10px;
  36. width: 100%;
  37. }
  38. .specitem {
  39. margin-bottom: 8px;
  40. padding: 8px 10px;
  41. /*background-color: #f9f9f9;*/
  42. border: 1px solid #e0e0e0;
  43. border-radius: 4px;
  44. clear: both;
  45. overflow: hidden;
  46. }
  47. .addspecitem, .delspecitem {
  48. display: inline-block;
  49. width: 20px;
  50. height: 20px;
  51. text-align: center;
  52. line-height: 18px;
  53. border-radius: 50%;
  54. font-weight: bold;
  55. cursor: pointer;
  56. margin-left: 10px;
  57. }
  58. .addspecitem {
  59. background-color: #5cb85c;
  60. color: white;
  61. }
  62. .delspecitem {
  63. background-color: #d9534f;
  64. color: white;
  65. }
  66. .spec-input {
  67. width: 160px;
  68. padding: 4px;
  69. margin-right: 10px;
  70. border: 1px solid #ccc;
  71. border-radius: 3px;
  72. }
  73. .spec-small-input {
  74. width: 80px;
  75. padding: 4px;
  76. margin-right: 10px;
  77. border: 1px solid #ccc;
  78. border-radius: 3px;
  79. }
  80. .spec-label {
  81. display: inline-block;
  82. margin-right: 5px;
  83. font-weight: normal;
  84. }
  85. .required {
  86. color: red;
  87. margin-left: 2px;
  88. }
  89. </style>
  90. </head>
  91. <body>
  92. <div id="man_zone">
  93. <form name="form1" method="post" action="save_product.php">
  94. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  95. <tbody>
  96. <tr>
  97. <th width="8%">产品名称</th>
  98. <td><input type="text" id="ProductName" name="ProductName" value="<?php echo $product_name; ?>" class="txt1" />
  99. <input type="hidden" name="id" value="" />
  100. <input type="hidden" name="keys" value="<?php echo $keys; ?>" />
  101. <input type="hidden" name="page" value="<?php echo $page; ?>" />
  102. <input type="hidden" name="category_id" value="<?php echo $category_id; ?>" />
  103. </td>
  104. </tr>
  105. <tr>
  106. <th width="8%">产品分类</th>
  107. <td>
  108. <select name="category_id" id="category_id" class="select1">
  109. <option value="0">-- 请选择分类 --</option>
  110. <?php
  111. // Build category tree
  112. $category_data = buildCategoryTree($conn);
  113. $cat_tree = $category_data['tree'];
  114. // Output options
  115. outputCategoryOptions($cat_tree, $category_id);
  116. ?>
  117. </select>
  118. </td>
  119. </tr>
  120. <tr>
  121. <th width="8%">产品图片</th>
  122. <td><input type="text" id="ProductImg" name="ProductImg" placeholder="186x*186px" value="<?php echo $product_img; ?>" class="txt1" style="width:390px;float:left;" />
  123. <iframe src="uploadfile.php" frameborder="0" scrolling="no" style="width:400px;height:22px;float:left;margin-left:10px;"></iframe></td>
  124. </tr>
  125. <tr>
  126. <th width="8%">计价单位</th>
  127. <td><input type="text" id="unit" name="unit" value="<?php echo $unit; ?>" class="txt1"/></td>
  128. </tr>
  129. <!-- <tr>-->
  130. <!-- <th width="8%">起订数量</th>-->
  131. <!-- <td><input type="text" id="moq" name="moq" value="--><?php //echo $moq; ?><!--" class="txt1"/></td>-->
  132. <!-- </tr>-->
  133. <tr>
  134. <th width="8%">产品规格</th>
  135. <td>
  136. <div class="specifications">
  137. <div class="specitem">
  138. <span class="spec-label">规格名称<span class="required">*</span>:</span>
  139. <input type="text" class="spec-input" name="spec_name[]" placeholder="如: 红色、XL" required>
  140. <span class="spec-label">起订数量<span class="required">*</span>:</span>
  141. <input type="number" class="spec-small-input" name="spec_moq[]" value="1" required>
  142. <span class="spec-label">规格价格<span class="required">*</span>:</span>
  143. <input type="text" class="spec-small-input" name="spec_price[]" placeholder="价格" required>
  144. <span class="addspecitem">+</span>
  145. <span class="delspecitem">-</span>
  146. <!-- 隐藏字段,仍然提交但不显示 -->
  147. <input type="hidden" name="spec_value[]" value="">
  148. <input type="hidden" name="spec_code[]" value="">
  149. <input type="hidden" name="spec_sort[]" value="0">
  150. </div>
  151. </div>
  152. </td>
  153. </tr>
  154. <tr>
  155. <th width="8%">不报价地区</th>
  156. <td>
  157. <ul class="areadd"></ul>
  158. <input type="text" id="AreaSearch" class="fastsearch">
  159. <div id="arealist" class="productlist"><ul></ul></div>
  160. </td>
  161. </tr>
  162. <tr>
  163. <th width="8%">不报价处理方式</th>
  164. <td><input type="text" id="note" name="note" value="<?php echo $note; ?>" class="txt1"/></td>
  165. </tr>
  166. <tr>
  167. <th width="8%">备注</th>
  168. <td><input type="text" id="tips" name="tips" value="<?php echo $tips; ?>" class="txt1"/></td>
  169. </tr>
  170. <tr>
  171. <th></th>
  172. <td colspan="2">
  173. <input type="submit" name="save" value="确定" class="btn1" />
  174. <input type="reset" name="reset" value="重置" class="btn1" />
  175. <input type="button" value="返回" class="btn1" onClick="location.href='<?php echo $href_str; ?>'" />
  176. </td>
  177. </tr>
  178. </tbody>
  179. </table>
  180. </form>
  181. </div>
  182. <script>
  183. $(document).ready(function(){
  184. // Add specification item
  185. $(document).on('click', '.addspecitem', function(){
  186. var newSpecItem = $(this).closest('.specitem').clone(true);
  187. newSpecItem.find('input[type="text"], input[type="hidden"]').val(''); // Clear values
  188. newSpecItem.find('input[name="spec_moq[]"]').val('1'); // Reset MOQ to 1
  189. newSpecItem.find('input[name="spec_sort[]"]').val('0'); // Reset sort to 0
  190. $(this).closest('.specifications').append(newSpecItem);
  191. });
  192. // Remove specification item
  193. $(document).on('click', '.delspecitem', function(){
  194. if($('.specitem').length > 1){
  195. $(this).closest('.specitem').remove();
  196. } else {
  197. alert('至少需要保留一个规格项');
  198. }
  199. });
  200. // Update unit display when unit field changes
  201. $('#unit').on('change keyup', function(){
  202. $('.unit').text($(this).val());
  203. });
  204. });
  205. </script>
  206. </body>
  207. </html>
  208. <?php mysqli_close($conn); ?>