qudao.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  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. <link rel="stylesheet" href="css/jquery.galpop.css" type="text/css" />
  12. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  13. <script type="text/javascript" src="js/js.js"></script>
  14. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  15. <script type="text/javascript" src="js/jquery.galpop.min.js"></script>
  16. </head>
  17. <body>
  18. <div id="man_zone">
  19. <?php
  20. $act = $_GET['act'] ?? '';
  21. if ($act == "save") {
  22. $isedit = false;
  23. $id = $_POST['id'] ?? '';
  24. if ($id != "" && is_numeric($id)) {
  25. $isedit = true;
  26. }
  27. $ch_name = textEncode($_POST['ch_name'] ?? '');
  28. if ($isedit) {
  29. $sql = "Select * From qudao Where id=" . $id;
  30. $rs = $conn->query($sql);
  31. if ($rs->rowCount() == 0) {
  32. $sql = "Insert Into qudao(ch_name) values('" . $ch_name . "')";
  33. } else {
  34. $sql = "Update qudao Set ch_name='" . $ch_name . "' Where id=" . $id;
  35. }
  36. $conn->query($sql);
  37. $page = $_GET['Page'] ?? '';
  38. $keys = urlencode($_GET['Keys'] ?? '');
  39. $ord = urlencode($_GET['Ord'] ?? '');
  40. header("Location: ?keys=" . $keys . "&Ord=" . $ord . "&Page=" . $page);
  41. exit;
  42. } else {
  43. $sql = "Insert Into qudao(ch_name) values('" . $ch_name . "')";
  44. $conn->query($sql);
  45. header("Location: ?");
  46. exit;
  47. }
  48. }
  49. if ($act == "add" || $act == "edit") {
  50. $id = $_GET['id'] ?? '';
  51. $isedit = false;
  52. $ch_name = '';
  53. if ($id != "" && is_numeric($id)) {
  54. $isedit = true;
  55. $sql = "Select * From qudao Where id=" . $id;
  56. $rs = $conn->query($sql);
  57. if ($row = $rs->fetch()) {
  58. $ch_name = textUncode($row['ch_name']);
  59. } else {
  60. $isedit = false;
  61. }
  62. }
  63. $page = $_GET['Page'] ?? '';
  64. $keys = urlencode($_GET['Keys'] ?? '');
  65. $ord = urlencode($_GET['Ord'] ?? '');
  66. $hrefstr = "?keys=" . $keys . "&Ord=" . $ord . "&Page=" . $page;
  67. ?>
  68. <form name="form1" method="post" action="<?php echo $hrefstr; ?>&act=save">
  69. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  70. <tbody>
  71. <tr>
  72. <th width="8%">来源</th>
  73. <td><input type="text" id="ch_name" name="ch_name" value="<?php echo $ch_name; ?>" class="txt1" />
  74. <input type="hidden" name="id" value="<?php echo $id; ?>" /></td>
  75. </tr>
  76. <tr>
  77. <th></th>
  78. <td><input type="submit" name="save" id="save" value="确定" class="btn1" />
  79. <input type="reset" name="save" id="save" value="重置" class="btn1" />
  80. <input type="button" value="返回" class="btn1" onClick="location.href='<?php echo $hrefstr; ?>'" /></td>
  81. </tr>
  82. </tbody>
  83. </table>
  84. </form>
  85. <?php
  86. exit;
  87. }
  88. if ($act == "postchk") {
  89. $keys = urlencode($_GET['Keys'] ?? '');
  90. $ord = urlencode($_GET['Ord'] ?? '');
  91. $page = $_GET['Page'] ?? '';
  92. $chkact = $_POST['chkact'] ?? '';
  93. $sqlStr = "";
  94. if (isset($_POST['chkbox'])) {
  95. foreach ($_POST['chkbox'] as $value) {
  96. if ($sqlStr != "") {
  97. $sqlStr .= " Or id=" . $value;
  98. } else {
  99. $sqlStr = " Where id=" . $value;
  100. }
  101. }
  102. $sqlStr = "Delete From qudao" . $sqlStr;
  103. $conn->query($sqlStr);
  104. }
  105. header("Location: ?Keys=" . $keys . "&Ord=" . $ord . "&Page=" . $page);
  106. exit;
  107. }
  108. $keys = $_GET['Keys'] ?? '';
  109. $keyscode = textEncode($keys);
  110. $ord = $_GET['Ord'] ?? '';
  111. $page = $_GET['Page'] ?? '';
  112. $ordStr = "";
  113. if ($ord != "") {
  114. $ordStr = $ord . ",";
  115. }
  116. $sql = "Select * From qudao Where ch_name like '%" . $keyscode . "%' Order By id Desc";
  117. $rs = $conn->query($sql);
  118. $keys = urlencode($keys);
  119. $ord = urlencode($ord);
  120. $hrefstr = "?keys=" . $keys;
  121. ?>
  122. <form id="form1" method="post" action="?act=postchk&Keys=<?php echo $keys; ?>&Ord=<?php echo $ord; ?>&Page=<?php echo $page; ?>" onSubmit="return false">
  123. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  124. <thead>
  125. <tr>
  126. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  127. <th width="6%">序号</th>
  128. <th width="60%">渠道来源</th>
  129. <th width="30%">操作</th>
  130. </tr>
  131. </thead>
  132. <tbody>
  133. <?php
  134. if ($rs->rowCount() > 0) {
  135. $records_per_page = 10;
  136. if ($page == "") $page = 1;
  137. if ($page == "end") $page = ceil($rs->rowCount() / $records_per_page);
  138. if (!is_numeric($page) || $page < 1) $page = 1;
  139. $page = (int)$page;
  140. if ($page > ceil($rs->rowCount() / $records_per_page)) {
  141. $page = ceil($rs->rowCount() / $records_per_page);
  142. }
  143. $start = ($page - 1) * $records_per_page;
  144. $tempNum = $start;
  145. $count = 0;
  146. while ($row = $rs->fetch()) {
  147. $count++;
  148. if ($count > $start && $count <= $start + $records_per_page) {
  149. $tempNum++;
  150. ?>
  151. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  152. <td align="center"><input type="checkbox" name="chkbox[]" value="<?php echo $row['id']; ?>" /></td>
  153. <td align="center"><?php echo $tempNum; ?></td>
  154. <td align="center"><?php echo $row['ch_name']; ?></td>
  155. <td align="center">
  156. <a href="?Keys=<?php echo $keys; ?>&Ord=<?php echo $ord; ?>&Page=<?php echo $page; ?>&act=edit&id=<?php echo $row['id']; ?>" class="ico_edit ico">修改</a>
  157. </td>
  158. </tr>
  159. <?php
  160. }
  161. }
  162. } else {
  163. if ($keys == "") {
  164. ?>
  165. <tr>
  166. <td align="center" colspan="4">Sorry,当前暂无信息</td>
  167. </tr>
  168. <?php
  169. } else {
  170. ?>
  171. <tr>
  172. <td align="center" colspan="4"><a href="?">Sorry,没有找到"<?php echo $keyscode; ?>"相关的信息,点击返回</a></td>
  173. </tr>
  174. <?php
  175. }
  176. }
  177. ?>
  178. </tbody>
  179. <tfoot>
  180. <tr>
  181. <td colspan="4">
  182. <div class="showpagebox">
  183. <?php
  184. if ($rs->rowCount() > 0) {
  185. $total_pages = ceil($rs->rowCount() / $records_per_page);
  186. if ($total_pages > 1) {
  187. $pageName = "?Keys=" . $keys . "&Ord=" . $ord . "&";
  188. $pagelen = 3;
  189. if ($page > 1) {
  190. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  191. echo "<a href=\"{$pageName}Page=" . ($page-1) . "\">上一页</a>";
  192. }
  193. if ($pagelen * 2 + 1 >= $total_pages) {
  194. $startPage = 1;
  195. $endPage = $total_pages;
  196. } else {
  197. if ($page <= $pagelen + 1) {
  198. $startPage = 1;
  199. $endPage = $pagelen * 2 + 1;
  200. } else {
  201. $startPage = $page - $pagelen;
  202. $endPage = $page + $pagelen;
  203. }
  204. if ($page + $pagelen > $total_pages) {
  205. $startPage = $total_pages - $pagelen * 2;
  206. $endPage = $total_pages;
  207. }
  208. }
  209. for ($i = $startPage; $i <= $endPage; $i++) {
  210. if ($i == $page) {
  211. echo "<a class=\"current\">$i</a>";
  212. } else {
  213. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  214. }
  215. }
  216. if ($page < $total_pages) {
  217. if ($total_pages - $page > $pagelen) {
  218. echo "<a href=\"{$pageName}Page=$total_pages\">...$total_pages</a>";
  219. }
  220. echo "<a href=\"{$pageName}Page=" . ($page+1) . "\">下一页</a>";
  221. echo "<a href=\"{$pageName}Page=$total_pages\">尾页</a>";
  222. }
  223. 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}\" />";
  224. }
  225. }
  226. ?>
  227. </div>
  228. <div class="searchbox">
  229. <input type="text" id="keys" value="<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>"
  230. onFocus="if(this.value == '<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>'){this.value='';}"
  231. onBlur="if(this.value == ''){this.value='<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>';}"
  232. onKeyDown="if(event.keyCode==13){location.href='?Keys='+escape(document.getElementById('keys').value)}" />
  233. <input type="button" id="searchgo" value="go" onClick="location.href='?Keys='+escape(document.getElementById('keys').value)" />
  234. </div>
  235. <div class="postchkbox">
  236. <select id="chkact" name="chkact">
  237. <option value="1">请选择</option>
  238. <option value="-1">删除</option>
  239. </select>
  240. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  241. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  242. </div>
  243. </td>
  244. </tr>
  245. </tfoot>
  246. </table>
  247. </form>
  248. </div>
  249. <script>
  250. $('.click-open-iframe').galpop({
  251. contentType: 'iframe',
  252. });
  253. </script>
  254. </body>
  255. </html>