12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!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>
- </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><?php echo $data['success']; ?></div>
- <form action="/index/main_group_manage_add" method="post" onsubmit="return group_form()">
- <table width="100%" cellspacing="1" cellpadding="4" align="center" class="tableborder">
- <tbody>
- <tr class="altbg1"><td colspan="7">用户组列表</td></tr>
- <tr>
- <td width="210">添加会员组:<input class="txt" name="grouptitle" id="grouptitle" /></td>
- <td><input type="submit" class="button" name="submit" value="提 交"/></td>
- </tr>
- </tbody>
- </table>
- </form>
-
- <div class="globle_list">
- <form name="userForm" action="/index/main_group_manage_edit" method="post">
- <table cellspacing="0" cellpadding="0" class="tableList">
- <tbody><tr>
- <th class="">用户组ID</th>
- <th class="">用户组</th>
- <th class=" ">经验值下限</th>
- <th class="">组权限</th>
- <th class="">删除</th>
- </tr>
- <?php foreach($data['group']['user'] as $k1=>$v1): ?>
- <tr>
- <td class=""><?php echo $v1['groupid']; ?></td>
- <td class=""><input name="groupid[]" type="hidden" value="<?php echo $v1['groupid']; ?>"/><input name="grouptitle[]" value="<?php echo $v1['grouptitle']; ?>"/></td>
- <td class=" "><input name="scorelower[]" value="<?php echo $v1['creditslower']; ?>"/></td>
- <td class=""><a href="/index/main_group_manage_set/<?php echo $v1['groupid']; ?>">设置</a></td>
- <td class=""><?php if( $v1['groupid']>GROUPIDLIMIT ): ?><a href="javascript:if(window.confirm('确认删除?'))window.location='/index/main_group_manage_delete/<?php echo $v1['groupid']; ?>'" target="main" >删除</a><?php else: ?>不能删除<?php endif; ?></td>
- </tr>
- <?php endforeach; ?>
- </tbody></table>
- <input type="submit" class="button" name="submit" value="提 交"/>
- </form>
- </div>
-
-
- </div>
-
-
- </div>
- </body>
- </html>
|