employee.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  14. </head>
  15. <body>
  16. <div id="man_zone">
  17. <?php
  18. $act = $_GET['act'] ?? '';
  19. if($act == "save") {
  20. $isEdit = false;
  21. $id = $_POST['id'] ?? '';
  22. if($id != '' && is_numeric($id)) {
  23. $isEdit = true;
  24. }
  25. $em_user = textEncode($_POST['em_user']);
  26. $em_password = textEncode($_POST['em_password']);
  27. $re_password = textEncode($_POST['re_password']);
  28. $em_role = $_POST['em_role'];
  29. $em_code = textEncode($_POST['em_code']);
  30. $em_email = textEncode($_POST['em_email']);
  31. $em_tel = textEncode($_POST['em_tel']);
  32. $nullPwd = false;
  33. if(empty($em_password)) {
  34. $nullPwd = true;
  35. }
  36. if($em_password != $re_password) {
  37. echo "<script>alert('两次密码输入不一致');history.back();</script>";
  38. exit;
  39. }
  40. if($isEdit) {
  41. $query = "SELECT * FROM employee WHERE id=$id";
  42. $result = $conn->query($query);
  43. if($result->num_rows > 0) {
  44. $password_sql = $nullPwd ? "" : ",em_password='".md5($em_password)."'";
  45. $sql = "UPDATE employee SET em_user='$em_user'$password_sql,em_role=$em_role,
  46. em_code='$em_code',em_email='$em_email',em_tel='$em_tel' WHERE id=$id";
  47. $conn->query($sql);
  48. }
  49. $page = $_GET['Page'] ?? '';
  50. $keys = urlencode($_GET['Keys'] ?? '');
  51. $ord = urlencode($_GET['Ord'] ?? '');
  52. header("Location: ?keys=$keys&Ord=$ord&Page=$page");
  53. exit;
  54. } else {
  55. if($nullPwd) {
  56. $em_password = "MTB".$em_code;
  57. }
  58. $sql = "INSERT INTO employee(em_user,em_password,em_role,em_code,em_email,em_tel)
  59. VALUES('$em_user','".md5($em_password)."',$em_role,'$em_code','$em_email','$em_tel')";
  60. $conn->query($sql);
  61. header("Location: ?");
  62. exit;
  63. }
  64. }
  65. if($act == "add" || $act == "edit") {
  66. $id = $_GET['id'] ?? '';
  67. $isEdit = false;
  68. if($id != '' && is_numeric($id)) {
  69. $isEdit = true;
  70. }
  71. if($isEdit) {
  72. $query = "SELECT * FROM employee WHERE id=$id";
  73. $result = $conn->query($query);
  74. if($result->num_rows > 0) {
  75. $row = $result->fetch_assoc();
  76. $em_user = textUncode($row['em_user']);
  77. $em_role = $row['em_role'];
  78. $em_code = textUncode($row['em_code']);
  79. $em_email = textUncode($row['em_email']);
  80. $em_tel = textUncode($row['em_tel']);
  81. } else {
  82. $isEdit = false;
  83. }
  84. }
  85. $page = $_GET['Page'] ?? '';
  86. $keys = urlencode($_GET['Keys'] ?? '');
  87. $ord = urlencode($_GET['Ord'] ?? '');
  88. $hrefstr = "?keys=$keys&Ord=$ord&Page=$page";
  89. ?>
  90. <form name="form1" method="post" action="<?php echo $hrefstr; ?>&act=save" onSubmit="return subform2();">
  91. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  92. <tbody>
  93. <tr>
  94. <th width="8%">用户名</th>
  95. <td><input type="text" id="em_user" name="em_user" value="<?php echo $em_user ?? ''; ?>" required class="txt-short" />
  96. <input type="hidden" name="id" value="<?php echo $id; ?>" /></td>
  97. </tr>
  98. <tr>
  99. <th width="8%">密码</th>
  100. <td><input type="password" id="em_password" name="em_password" value="" class="txt-short"/></td>
  101. </tr>
  102. <tr>
  103. <th width="8%">重复密码</th>
  104. <td><input type="password" id="re_password" name="re_password" value="" class="txt-short"/></td>
  105. </tr>
  106. <tr>
  107. <th width="8%">工号</th>
  108. <td><input type="text" id="em_code" name="em_code" value="<?php echo $em_code ?? ''; ?>" class="txt1" /></td>
  109. </tr>
  110. <tr>
  111. <th width="8%">角色</th>
  112. <td><select name="em_role">
  113. <option value="0">组长</option>
  114. <?php
  115. $query = "SELECT id,em_user FROM employee WHERE em_role=0";
  116. $result = $conn->query($query);
  117. while($row = $result->fetch_assoc()) {
  118. $selected = ($row['id'] == ($em_role ?? '')) ? ' selected="selected"' : '';
  119. echo "<option value=\"{$row['id']}\"$selected>组长:{$row['em_user']}</option>";
  120. }
  121. ?>
  122. </select>
  123. </td>
  124. </tr>
  125. <tr>
  126. <th width="8%">邮箱</th>
  127. <td><input type="text" id="em_email" name="em_email" value="<?php echo $em_email ?? ''; ?>" class="txt1" /></td>
  128. </tr>
  129. <tr>
  130. <th width="8%">手机</th>
  131. <td><input type="text" id="em_tel" name="em_tel" value="<?php echo $em_tel ?? ''; ?>" class="txt1" /></td>
  132. </tr>
  133. <tr>
  134. <th></th>
  135. <td>
  136. <input type="submit" name="save" id="save" value="确定" class="btn1" />
  137. <input type="reset" name="save" id="save" value="重置" class="btn1" />
  138. <input type="button" value="返回" class="btn1" onClick="location.href='<?php echo $hrefstr; ?>'" />
  139. </td>
  140. </tr>
  141. </tbody>
  142. </table>
  143. </form>
  144. </div>
  145. </body>
  146. </html>
  147. <?php
  148. exit;
  149. }
  150. if($act == "postchk") {
  151. $keys = urlencode($_GET['Keys'] ?? '');
  152. $ord = urlencode($_GET['Ord'] ?? '');
  153. $page = $_GET['Page'] ?? '';
  154. $chkact = $_POST['chkact'] ?? '';
  155. if(isset($_POST['chkbox']) && is_array($_POST['chkbox'])) {
  156. $sqlStr = "DELETE FROM employee WHERE id IN (" . implode(',', $_POST['chkbox']) . ")";
  157. $conn->query($sqlStr);
  158. }
  159. header("Location: ?Keys=$keys&Ord=$ord&Page=$page");
  160. exit;
  161. }
  162. $keys = $_GET['Keys'] ?? '';
  163. $keyscode = textEncode($keys);
  164. $ord = $_GET['Ord'] ?? '';
  165. $page = $_GET['Page'] ?? '';
  166. $query = "SELECT id,em_user,em_code,em_role FROM employee
  167. WHERE em_user LIKE '%$keyscode%' OR em_code LIKE '%$keyscode%'
  168. ORDER BY Id DESC";
  169. $result = $conn->query($query);
  170. $keys = urlencode($keys);
  171. $ord = urlencode($ord);
  172. $hrefstr = "?keys=$keys";
  173. ?>
  174. <form id="form1" method="post" action="?act=postchk&Keys=<?php echo $keys; ?>&Ord=<?php echo $ord; ?>&Page=<?php echo $page; ?>" onSubmit="return false">
  175. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  176. <thead>
  177. <tr>
  178. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  179. <th width="6%">序号</th>
  180. <th>姓名</th>
  181. <th>工号</th>
  182. <th>角色</th>
  183. <th>操作</th>
  184. </tr>
  185. </thead>
  186. <tbody>
  187. <?php
  188. if($result->num_rows > 0) {
  189. $pageSize = 13;
  190. $totalRows = $result->num_rows;
  191. $totalPages = ceil($totalRows / $pageSize);
  192. if($page == '') $page = 1;
  193. if($page == 'end') $page = $totalPages;
  194. if(!is_numeric($page) || $page < 1) $page = 1;
  195. $page = (int)$page;
  196. if($page > $totalPages) $page = $totalPages;
  197. $offset = ($page - 1) * $pageSize;
  198. $query .= " LIMIT $offset, $pageSize";
  199. $result = $conn->query($query);
  200. $tempNum = $offset;
  201. while($row = $result->fetch_assoc()) {
  202. $tempNum++;
  203. ?>
  204. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  205. <td align="center"><input type="checkbox" name="chkbox[]" value="<?php echo $row['id']; ?>" /></td>
  206. <td align="center"><?php echo $tempNum; ?></td>
  207. <td align="center"><?php echo $row['em_user']; ?></td>
  208. <td align="center"><?php echo $row['em_code']; ?></td>
  209. <td align="center"><?php echo $row['em_role'] == 0 ? '组长' : '组员'; ?></td>
  210. <th><a class="ico_edit" href="?act=edit&Keys=<?php echo $keys; ?>&Ord=<?php echo $ord; ?>&Page=<?php echo $page; ?>&id=<?php echo $row['id']; ?>">修改</a></th>
  211. </tr>
  212. <?php
  213. }
  214. } else {
  215. if($keys == '') {
  216. echo '<tr><td align="center" colspan="6">Sorry,当前暂无信息</td></tr>';
  217. } else {
  218. echo '<tr><td align="center" colspan="6"><a href="?">Sorry,没有找到"'.$keyscode.'"相关的信息,点击返回</a></td></tr>';
  219. }
  220. }
  221. ?>
  222. </tbody>
  223. <tfoot>
  224. <tr>
  225. <td colspan="6">
  226. <div class="showpagebox">
  227. <?php
  228. if($totalPages > 1) {
  229. $pageName = "?Keys=$keys&Ord=$ord&";
  230. $pageLen = 3;
  231. if($page > 1) {
  232. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  233. echo "<a href=\"{$pageName}Page=".($page-1)."\">上一页</a>";
  234. }
  235. if($pageLen * 2 + 1 >= $totalPages) {
  236. $startPage = 1;
  237. $endPage = $totalPages;
  238. } else {
  239. if($page <= $pageLen + 1) {
  240. $startPage = 1;
  241. $endPage = $pageLen * 2 + 1;
  242. } else {
  243. $startPage = $page - $pageLen;
  244. $endPage = $page + $pageLen;
  245. }
  246. if($page + $pageLen > $totalPages) {
  247. $startPage = $totalPages - $pageLen * 2;
  248. $endPage = $totalPages;
  249. }
  250. }
  251. for($i = $startPage; $i <= $endPage; $i++) {
  252. if($i == $page) {
  253. echo "<a class=\"current\">$i</a>";
  254. } else {
  255. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  256. }
  257. }
  258. if($page < $totalPages) {
  259. if($totalPages - $page > $pageLen) {
  260. echo "<a href=\"{$pageName}Page=$totalPages\">...$totalPages</a>";
  261. }
  262. echo "<a href=\"{$pageName}Page=".($page+1)."\">下一页</a>";
  263. echo "<a href=\"{$pageName}Page=$totalPages\">尾页</a>";
  264. }
  265. 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}\" />";
  266. }
  267. ?>
  268. </div>
  269. <div class="searchbox">
  270. <input type="text" id="keys" value="<?php echo $keyscode == '' ? '请输入搜索关键词' : $keyscode; ?>"
  271. onFocus="if(this.value == '<?php echo $keyscode == '' ? '请输入搜索关键词' : $keyscode; ?>'){this.value='';}"
  272. onBlur="if(this.value == ''){this.value='<?php echo $keyscode == '' ? '请输入搜索关键词' : $keyscode; ?>';}"
  273. onKeyDown="if(event.keyCode==13){location.href='?Keys='+escape(document.getElementById('keys').value)}" />
  274. <input type="button" id="searchgo" value="go" onClick="location.href='?Keys='+escape(document.getElementById('keys').value)" />
  275. </div>
  276. <div class="postchkbox">
  277. <select id="chkact" name="chkact">
  278. <option value="1">显示</option>
  279. <option value="0">隐藏</option>
  280. <option value="-1">删除</option>
  281. </select>
  282. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  283. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  284. </div>
  285. </td>
  286. </tr>
  287. </tfoot>
  288. </table>
  289. </form>
  290. </div>
  291. </body>
  292. </html>