user_manage_expert.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <link href="<?php echo WEB_SITE_GLOBAL ?>/img/admin/style.css" rel="stylesheet" type="text/css" />
  6. <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/jquery-1.7.1.min.js"></script>
  7. <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/over.js"></script>
  8. <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/admin.js"></script>
  9. <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/calendar.js"></script>
  10. </head>
  11. <body>
  12. <div class="main_content new_product">
  13. <div class="crumbbar"><a href="/index/main_navon" target="main">快速导航</a> » <?php echo $data['map']; ?></div>
  14. <div class="main_toolbar clearfix">
  15. <div id="append"></div>
  16. <div class="globle_list">
  17. <form name="userForm" action="" method="post">
  18. <table cellspacing="0" cellpadding="0" class="tableList">
  19. <tbody><tr>
  20. <th class="">用户名</th>
  21. <th class="">积分</th>
  22. <th class="">上次登录时间</th>
  23. <th class="">编辑</th>
  24. </tr>
  25. <?php foreach($data['userExpert'] as $k1=>$v1): ?>
  26. <tr class="">
  27. <td class=""><?php echo $v1['username']; ?></td>
  28. <td class=""><?php echo $v1['credit1']; ?></td>
  29. <td class=" "><?php echo $v1['lastlogin']; ?></td>
  30. <td class=""><a href="/index/main_user_manage_edit/<?php echo $v1['uid']; ?>" target="main" >编辑</a>&nbsp;
  31. <a href="/index/main_user_manage_credit/<?php echo $v1['uid']; ?>">积分明细</a></td>
  32. </tr>
  33. <?php endforeach; ?>
  34. </tbody></table>
  35. </form>
  36. </div>
  37. </div>
  38. </div>
  39. </body>
  40. </html>