products.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. <?php
  2. include "conn.php";
  3. checkLogin("信息管理");
  4. ?>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  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. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  12. <script type="text/javascript" src="js/js.js"></script>
  13. <script type="text/javascript" src="js/SearchArea.js"></script>
  14. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  15. </head>
  16. <body>
  17. <div id="man_zone">
  18. <?php
  19. $act = $_GET['act'] ?? '';
  20. $productName = textEncode($_POST['ProductName'] ?? '');
  21. $productImg = textEncode($_POST['ProductImg'] ?? '');
  22. $unit = textEncode($_POST['unit'] ?? '');
  23. $moq = textEncode($_POST['moq'] ?? '');
  24. $nosale = $_POST['nosale'] ?? '';
  25. $num = $_POST['num'] ?? '';
  26. $price = $_POST['price'] ?? '';
  27. $note = textEncode($_POST['note'] ?? '');
  28. $tips = textEncode($_POST['tips'] ?? '');
  29. if ($act == "save") {
  30. $isedit = false;
  31. $id = $_POST['id'] ?? '';
  32. if ($id != "" && is_numeric($id)) {
  33. $isedit = true;
  34. }
  35. if ($isedit) {
  36. $sql = "Select * From Products Where id=" . $id;
  37. $rs = $conn->query($sql);
  38. if ($row = $rs->fetch()) {
  39. $sql = "Update Products Set
  40. ProductName='" . $productName . "',
  41. ProductImg='" . $productImg . "',
  42. Addtime=NOW(),
  43. moq='" . $moq . "',
  44. unit='" . $unit . "',
  45. nosale='" . $nosale . "',
  46. note='" . $note . "',
  47. tips='" . $tips . "'
  48. Where id=" . $id;
  49. $conn->query($sql);
  50. $conn->query("delete from price where productId=" . $id . " and AreaId=0");
  51. $numarr = explode(",", $num);
  52. $pricearr = explode(",", $price);
  53. for ($i = 0; $i < count($numarr); $i++) {
  54. if ($numarr[$i] == "") $numarr[$i] = 0;
  55. if ($pricearr[$i] == "") $pricearr[$i] = 0;
  56. $conn->query("insert into price (productId,AreaId,num,price) values(" . $id . ",0," . $numarr[$i] . ",'" . $pricearr[$i] . "')");
  57. }
  58. }
  59. } else {
  60. $sql = "Insert Into Products(ProductName,ProductImg,Addtime,unit,moq,nosale,note,tips) values(
  61. '" . $productName . "',
  62. '" . $productImg . "',
  63. NOW(),
  64. '" . $unit . "',
  65. '" . $moq . "',
  66. '" . $nosale . "',
  67. '" . $note . "',
  68. '" . $tips . "'
  69. )";
  70. $conn->query($sql);
  71. $sql = "select top 1 id from Products order by id desc";
  72. $rs = $conn->query($sql);
  73. $id = $rs->fetch()['id'];
  74. $numarr = explode(",", $num);
  75. $pricearr = explode(",", $price);
  76. for ($i = 0; $i < count($numarr); $i++) {
  77. if ($numarr[$i] == "") $numarr[$i] = 0;
  78. if ($pricearr[$i] == "") $pricearr[$i] = 0;
  79. $conn->query("insert into price (productId,AreaId,num,price) values(" . $id . ",0," . $numarr[$i] . ",'" . $pricearr[$i] . "')");
  80. }
  81. }
  82. $page = $_GET['Page'] ?? '';
  83. $keys = urlencode($_GET['Keys'] ?? '');
  84. header("Location: ?keys=" . $keys . "&Page=" . $page . $urlStr);
  85. exit;
  86. }
  87. if ($act == "add" || $act == "edit") {
  88. $id = $_GET['id'] ?? '';
  89. $isedit = false;
  90. if ($id != "" && is_numeric($id)) {
  91. $isedit = true;
  92. $sql = "Select ProductName,ProductImg,unit,moq,nosale,note,tips from Products Where id=" . $id;
  93. $rs = $conn->query($sql);
  94. if ($row = $rs->fetch()) {
  95. $productName = textUncode($row['ProductName']);
  96. $productImg = textUncode($row['ProductImg']);
  97. $unit = $row['unit'];
  98. $moq = textUncode($row['moq']);
  99. $nosale = $row['nosale'];
  100. $note = textUncode($row['note']);
  101. $tips = textUncode($row['tips']);
  102. } else {
  103. $isedit = false;
  104. }
  105. }
  106. $page = $_GET['Page'] ?? '';
  107. $keys = urlencode($_GET['Keys'] ?? '');
  108. $hrefstr = "?keys=" . $keys . "&Page=" . $page;
  109. ?>
  110. <form name="form1" method="post" action="<?php echo $hrefstr; ?>&act=save">
  111. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  112. <tbody>
  113. <tr>
  114. <th width="8%">产品名称</th>
  115. <td><input type="text" id="ProductName" name="ProductName" value="<?php echo $productName; ?>" class="txt1" />
  116. <input type="hidden" name="id" value="<?php echo $id; ?>" /></td>
  117. </tr>
  118. <tr>
  119. <th width="8%">产品图片</th>
  120. <td><input type="text" id="ProductImg" name="ProductImg" placeholder="186x*186px" value="<?php echo $productImg; ?>" class="txt1" style="width:390px;float:left;" />
  121. <iframe src="uploadfile.php" frameborder="0" scrolling="no" style="width:400px;height:22px;float:left;margin-left:10px;"></iframe></td>
  122. </tr>
  123. <tr>
  124. <th width="8%">计价单位</th>
  125. <td><input type="text" id="unit" name="unit" value="<?php echo $unit; ?>" class="txt1"/></td>
  126. </tr>
  127. <tr>
  128. <th width="8%">起订数量</th>
  129. <td><input type="text" id="moq" name="moq" value="<?php echo $moq; ?>" class="txt1"/></td>
  130. </tr>
  131. <tr>
  132. <th width="8%">默认售价</th>
  133. <td>
  134. <div class="Price">
  135. <?php
  136. if ($isedit) {
  137. $rs = $conn->query("Select num,price from price where AreaId=0 and productId=" . $id . " order by num asc");
  138. if ($rs->rowCount() > 0) {
  139. while ($row = $rs->fetch()) {
  140. ?>
  141. <div class="priceitem">
  142. <label>≥</label>
  143. <input type="number" class="txt3 num" name="num" value="<?php echo $row['num']; ?>">
  144. <label class="unit"><?php echo $unit; ?></label>
  145. <label>售价</label>
  146. <input type="text" class="txt3 price" name="price" value="<?php echo $row['price']; ?>">
  147. <label>RMB</label>
  148. <span class="additem"></span>
  149. <span class="delitem"></span>
  150. <span class="note"></span>
  151. </div>
  152. <?php
  153. }
  154. } else {
  155. ?>
  156. <div class="priceitem">
  157. <label>≥</label>
  158. <input type="number" class="txt3 num" name="num">
  159. <label class="unit"><?php echo $unit; ?></label>
  160. <label>售价</label>
  161. <input type="text" class="txt3 price" name="price">
  162. <label>RMB</label>
  163. <span class="additem"></span>
  164. <span class="delitem"></span>
  165. <span class="note"></span>
  166. </div>
  167. <?php
  168. }
  169. } else {
  170. ?>
  171. <div class="priceitem">
  172. <label>≥</label>
  173. <input type="number" class="txt3 num" name="num">
  174. <label class="unit"><?php echo $unit; ?></label>
  175. <label>售价</label>
  176. <input type="text" class="txt3 price" name="price">
  177. <label>RMB</label>
  178. <span class="additem"></span>
  179. <span class="delitem"></span>
  180. <span class="note"></span>
  181. </div>
  182. <?php
  183. }
  184. ?>
  185. </div>
  186. </td>
  187. </tr>
  188. <tr>
  189. <th width="8%">不报价地区</th>
  190. <td>
  191. <ul class="areadd">
  192. <?php
  193. if ($nosale != "") {
  194. $rs = $conn->query("select id,countryName from country where id in(" . $nosale . ")");
  195. while ($row = $rs->fetch()) {
  196. ?>
  197. <li>
  198. <input type="hidden" name="nosale" value="<?php echo $row['id']; ?>">
  199. <span class="cname"><?php echo $row['countryName']; ?></span>
  200. <span class="close"></span>
  201. </li>
  202. <?php
  203. }
  204. }
  205. ?>
  206. </ul>
  207. <input type="text" id="AreaSearch" class="fastsearch">
  208. <div id="arealist" class="productlist"><ul></ul></div>
  209. </td>
  210. </tr>
  211. <tr>
  212. <th width="8%">不报价处理方式</th>
  213. <td><input type="text" id="note" name="note" value="<?php echo $note; ?>" class="txt1"/></td>
  214. </tr>
  215. <tr>
  216. <th width="8%">备注</th>
  217. <td><input type="text" id="tips" name="tips" value="<?php echo $tips; ?>" class="txt1"/></td>
  218. </tr>
  219. <tr>
  220. <th></th>
  221. <td>
  222. <input type="submit" name="save" value="确定" class="btn1" />
  223. <input type="reset" name="reset" value="重置" class="btn1" />
  224. <input type="button" value="返回" class="btn1" onClick="location.href='<?php echo $hrefstr; ?>'" />
  225. </td>
  226. </tr>
  227. </tbody>
  228. </table>
  229. </form>
  230. <?php
  231. exit;
  232. }
  233. if ($act == "postchk") {
  234. $keys = urlencode($_GET['Keys'] ?? '');
  235. $page = $_GET['Page'] ?? '';
  236. $chkact = $_POST['chkact'] ?? '';
  237. $sqlStr = "";
  238. if (isset($_POST['chkbox'])) {
  239. foreach ($_POST['chkbox'] as $value) {
  240. if ($sqlStr != "") {
  241. $sqlStr .= " Or id=" . $value;
  242. } else {
  243. $sqlStr = " Where id=" . $value;
  244. }
  245. }
  246. switch ($chkact) {
  247. case "0":
  248. $sqlStr = "Update Products Set cs_state=" . $chkact . $sqlStr;
  249. break;
  250. case "1":
  251. $sqlStr = "Update Products Set cs_state=" . $chkact . $sqlStr;
  252. break;
  253. default:
  254. $sqlStr = "Delete From Products" . $sqlStr;
  255. }
  256. $conn->query($sqlStr);
  257. }
  258. header("Location: ?Keys=" . $keys . "&Page=" . $page);
  259. exit;
  260. }
  261. // 主列表页面
  262. $keyscode = textEncode($_GET['Keys'] ?? '');
  263. $page = $_GET['Page'] ?? '';
  264. $sqlStr = "Select id,ProductName,ProductImg from Products order by id Desc";
  265. $rs = $conn->query($sqlStr);
  266. ?>
  267. <form id="form1" method="post" action="?act=postchk&Keys=<?php echo urlencode($_GET['Keys'] ?? ''); ?>&Page=<?php echo $page; ?>" onSubmit="return false">
  268. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  269. <thead>
  270. <tr>
  271. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  272. <th width="6%">序号</th>
  273. <th width="30%">产品名称</th>
  274. <th width="40%">图片</th>
  275. <th width="20%">操作</th>
  276. </tr>
  277. </thead>
  278. <tbody>
  279. <?php
  280. if ($rs->rowCount() > 0) {
  281. $rs->setFetchMode(PDO::FETCH_ASSOC);
  282. $records_per_page = 18;
  283. if ($page == "") $page = 1;
  284. if ($page == "end") $page = ceil($rs->rowCount() / $records_per_page);
  285. if (!is_numeric($page) || $page < 1) $page = 1;
  286. $page = (int)$page;
  287. $start = ($page - 1) * $records_per_page;
  288. $tempNum = $start;
  289. $count = 0;
  290. while ($row = $rs->fetch()) {
  291. $count++;
  292. if ($count > $start && $count <= $start + $records_per_page) {
  293. $tempNum++;
  294. ?>
  295. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  296. <td align="center"><input type="checkbox" name="chkbox[]" value="<?php echo $row['id']; ?>" /></td>
  297. <td align="center"><?php echo $tempNum; ?></td>
  298. <td align="center"><?php echo $row['ProductName']; ?></td>
  299. <td align="center"><img src="<?php echo $row['ProductImg']; ?>" width="80px"></td>
  300. <td align="center">
  301. <a href="?Keys=<?php echo urlencode($_GET['Keys'] ?? ''); ?>&Page=<?php echo $page; ?><?php echo $urlStr ?? ''; ?>&act=edit&id=<?php echo $row['id']; ?>" class="ico_edit ico">修改</a>
  302. </td>
  303. </tr>
  304. <?php
  305. }
  306. }
  307. } else {
  308. if ($_GET['Keys'] ?? '' == "") {
  309. ?>
  310. <tr>
  311. <td align="center" colspan="9">Sorry,当前暂无信息</td>
  312. </tr>
  313. <?php
  314. } else {
  315. ?>
  316. <tr>
  317. <td align="center" colspan="9"><a href="?">Sorry,没有找到"<?php echo $keyscode; ?>"相关的信息,点击返回</a></td>
  318. </tr>
  319. <?php
  320. }
  321. }
  322. ?>
  323. </tbody>
  324. <tfoot>
  325. <tr>
  326. <td colspan="9">
  327. <div class="showpagebox">
  328. <?php
  329. if ($rs->rowCount() > 0) {
  330. $total_pages = ceil($rs->rowCount() / $records_per_page);
  331. if ($total_pages > 1) {
  332. $pageName = "?Keys=" . urlencode($_GET['Keys'] ?? '') . ($urlStr ?? '') . "&";
  333. $pagelen = 3;
  334. if ($page > 1) {
  335. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  336. echo "<a href=\"{$pageName}Page=" . ($page-1) . "\">上一页</a>";
  337. }
  338. if ($pagelen * 2 + 1 >= $total_pages) {
  339. $startPage = 1;
  340. $endPage = $total_pages;
  341. } else {
  342. if ($page <= $pagelen + 1) {
  343. $startPage = 1;
  344. $endPage = $pagelen * 2 + 1;
  345. } else {
  346. $startPage = $page - $pagelen;
  347. $endPage = $page + $pagelen;
  348. }
  349. if ($page + $pagelen > $total_pages) {
  350. $startPage = $total_pages - $pagelen * 2;
  351. $endPage = $total_pages;
  352. }
  353. }
  354. for ($i = $startPage; $i <= $endPage; $i++) {
  355. if ($i == $page) {
  356. echo "<a class=\"current\">$i</a>";
  357. } else {
  358. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  359. }
  360. }
  361. if ($page < $total_pages) {
  362. if ($total_pages - $page > $pagelen) {
  363. echo "<a href=\"{$pageName}Page=$total_pages\">...$total_pages</a>";
  364. }
  365. echo "<a href=\"{$pageName}Page=" . ($page+1) . "\">下一页</a>";
  366. echo "<a href=\"{$pageName}Page=$total_pages\">尾页</a>";
  367. }
  368. echo "<input type=\"text\" id=\"Pagego\" value=\"$page\" onFocus=\"if(this.value == '$page'){this.value='';};\" onBlur=\"if(this.value == ''){this.value='$page';}\" onKeyUp=\"this.value=this.value.replace(/\D/g,'')\" onKeyDown=\"if(event.keyCode==13){location.href='{$pageName}Page='+document.getElementById('Pagego').value}\" />";
  369. }
  370. }
  371. ?>
  372. </div>
  373. <div class="postchkbox">
  374. <select id="chkact" name="chkact">
  375. <option value="1">显示</option>
  376. <option value="0">隐藏</option>
  377. <option value="-1">删除</option>
  378. </select>
  379. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  380. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  381. </div>
  382. </td>
  383. </tr>
  384. </tfoot>
  385. </table>
  386. </form>
  387. </div>
  388. </body>
  389. </html>