12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link href="<?php echo WEB_SITE_GLOBAL ?>/img/admin/style.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/jquery-1.7.1.min.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/over.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/admin.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/calendar.js"></script>
- </head>
- <body>
- <div class="main_content new_product">
- <div class="crumbbar"><a href="/index/main_navon" target="main">快速导航</a> » <?php echo $data['map']; ?></div>
- <div class="main_toolbar clearfix">
- <div id="append"></div>
-
- <div class="globle_list">
- <form name="userForm" action="" method="post">
- <table cellspacing="0" cellpadding="0" class="tableList">
- <tbody><tr>
-
- <th class="">用户名</th>
- <th class="">积分</th>
- <th class="">上次登录时间</th>
-
- <th class="">编辑</th>
- </tr>
- <?php foreach($data['userExpert'] as $k1=>$v1): ?>
- <tr class="">
- <td class=""><?php echo $v1['username']; ?></td>
- <td class=""><?php echo $v1['credit1']; ?></td>
- <td class=" "><?php echo $v1['lastlogin']; ?></td>
- <td class=""><a href="/index/main_user_manage_edit/<?php echo $v1['uid']; ?>" target="main" >编辑</a>
- <a href="/index/main_user_manage_credit/<?php echo $v1['uid']; ?>">积分明细</a></td>
- </tr>
- <?php endforeach; ?>
- </tbody></table>
- </form>
- </div>
- </div>
-
-
- </div>
- </body>
- </html>
|