12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <article class="cl pd-20">
- <div class="cl pd-5 bg-1 bk-gray">
- <span class="l">
- <a href="javascript:;" onclick="del_all()" class="btn btn-danger radius">
- <i class="Hui-iconfont"></i> 批量删除</a>
- <a href="javascript:save(0);" class="btn btn-primary radius">
- <i class="Hui-iconfont"></i> 添加管理员</a>
- </span>
- </div>
- <div class="mt-10" style="min-width:800px;">
- <table class="table table-border table-bordered table-bg">
- <thead>
- <tr class="text-c">
- <th width="25">
- <input type="checkbox" name="allcheck" value="">
- </th>
- <th width="40px">ID</th>
- <th width="120px">登录名</th>
- <th width="120px">用户组</th>
- <th width="120px">姓名</th>
- <th width="120px">昵称</th>
- <th width="160px">邮箱</th>
- <th width="80px">登录次数</th>
- <th width="140px">最后登录时间</th>
- <th width="120px">最后登录ip</th>
- <th width="140px">创建时间</th>
- <th>状态</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- {foreach $list as $val}
- <tr class="text-c">
- <td>
- <input type="checkbox" value="{$val.userid}" name="checkbox[]">
- </td>
- <td>{$val.userid}</td>
- <td>{$val.username}</td>
- <td>{$val.rolename}</td>
- <td>{$val.truename}</td>
- <td>{$val.nickname}</td>
- <td>{$val.email}</td>
- <td>{$val.login_num}</td>
- <td>{$val.per_time}</td>
- <td>{$val.per_ip}</td>
- <td>{$val.create_time}</td>
- <td class="td-status">
- <a href="javascript:;" onclick="status(this,'{$val.userid}')" style="text-decoration: none;"
- title="{$val.status==1? '禁用' : '正常'}">
- <span class="f-20 c-primary"><i class="Hui-iconfont">{$val.status==1?'' :
- ''}</i></span></a>
- </td>
- <td class="td-manage">
- <a title="编辑" href="javascript:save({$val.userid});" class="btn btn-primary radius">
- <i class="Hui-iconfont"></i></a>
- <a title="删除" href="javascript:;" onclick="del(this,'{$val.userid}')" class="ml-5 btn btn-danger radius">
- <i class="Hui-iconfont"></i></a>
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- </div>
- </article>
- <!--请在下方写此页面业务相关的脚本-->
- <script type="text/javascript">
- function save(id) {
- var title = id == 0 ? '添加管理员' : '修改管理员'
- var url = "{:url('save')}" + "?_layer=true&id=" + id
- layer_show(title, url, 800, 600);
- }
- </script>
- <!--/请在上方写此页面业务相关的脚本-->
|