|
@@ -6,86 +6,79 @@
|
|
|
<button data-modal='{:url("add")}' data-title="添加用户" class='layui-btn layui-btn-sm layui-btn-primary'>添加用户</button>
|
|
|
{/if}
|
|
|
|
|
|
-{if auth("remove")}
|
|
|
-<button data-action='{:url("remove")}' data-rule="id#{key}" data-csrf="{:systoken('remove')}" data-confirm="确定要删除这些用户吗?" class='layui-btn layui-btn-sm layui-btn-primary'>删除用户</button>
|
|
|
+{if auth("state")}
|
|
|
+<a data-confirm="确定要启用该用户吗?" data-action="{:url('state')}" data-rule="id#{key};status#0" data-csrf="{:systoken('state')}" class='layui-btn layui-btn-sm layui-btn-primary'>批量禁用</a>
|
|
|
{/if}
|
|
|
|
|
|
{/block}
|
|
|
|
|
|
{block name="content"}
|
|
|
-<div class="think-box-shadow">
|
|
|
- {include file='user/index_search'}
|
|
|
- <table class="layui-table margin-top-10" lay-skin="line">
|
|
|
- {notempty name='list'}
|
|
|
- <thead>
|
|
|
- <tr>
|
|
|
- <th class='list-table-check-td think-checkbox'>
|
|
|
- <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
|
|
|
- </th>
|
|
|
- <th class='list-table-sort-td'>
|
|
|
- <button type="button" data-reload class="layui-btn layui-btn-xs">刷 新</button>
|
|
|
- </th>
|
|
|
- <th class='text-left nowrap' width="25%">账号信息</th>
|
|
|
- <th class='text-left nowrap'>账号状态</th>
|
|
|
- <th></th>
|
|
|
- </tr>
|
|
|
- </thead>
|
|
|
- {/notempty}
|
|
|
- <tbody>
|
|
|
- {foreach $list as $key=>$vo}
|
|
|
- <tr data-dbclick>
|
|
|
- <td class='list-table-check-td think-checkbox'>
|
|
|
- <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
|
|
|
- </td>
|
|
|
- <td class='list-table-sort-td'>
|
|
|
- <label><input data-action-blur="{:request()->url()}" data-value="id#{$vo.id};action#sort;sort#{value}" data-loading="false" value="{$vo.sort}" class="list-sort-input"></label>
|
|
|
- </td>
|
|
|
- <td class='text-left nowrap'>
|
|
|
- <img alt="img" width="40px" height="40px" class="text-top margin-right-10" data-tips-image src="{$vo.headimg|default=''}">
|
|
|
- <div class="inline-block">
|
|
|
- 用户账号 <b class="color-blue">{$vo.username|default=''}</b>,账号昵称 <b class="color-blue">{$vo.nickname|default='<span class="color-desc">未配置账号昵称</span>'|raw}</b><br>
|
|
|
- 联系手机 <span class="color-blue">{$vo.contact_phone|default='<i class="color-desc">未配置联系手机</i>'|raw}</span>,
|
|
|
- 联系邮箱 <span class="color-blue">{$vo.contact_mail|default='<i class="color-desc">未配置联系邮箱</i>'|raw}</span>。
|
|
|
- </div>
|
|
|
- </td>
|
|
|
- <td class='text-left nowrap'>
|
|
|
- 账号创建于 <span class="color-blue">{$vo.create_at|format_datetime}</span>,共登录了 <span class="color-blue">{$vo.login_num|default=0}</span> 次<br>
|
|
|
- {if $vo.login_at}
|
|
|
- 最近于 <span class="color-blue">{$vo.login_at|format_datetime}</span> 通过 <span class="color-blue">{$vo.login_ip|default='--'}</span> 登录,{else}
|
|
|
- <span class="color-desc">该账号还没有登录过哦,登录之后才会有记录!</span>
|
|
|
- {/if}
|
|
|
- {eq name='vo.status' value='0'}<b class="color-red">已禁用</b>{else}<b class="color-green">使用中</b>{/eq}
|
|
|
- </td>
|
|
|
- <td class='text-left nowrap'>
|
|
|
+<div class="layui-tab layui-tab-card think-bg-white">
|
|
|
+ {include file='user/index_tab'}
|
|
|
+ <div class="layui-tab-content think-box-shadow">
|
|
|
+ {include file='user/index_search'}
|
|
|
+ <table class="layui-table margin-top-10" lay-skin="line">
|
|
|
+ {notempty name='list'}
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th class='list-table-check-td think-checkbox'>
|
|
|
+ <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
|
|
|
+ </th>
|
|
|
+ <th class='list-table-sort-td'>
|
|
|
+ <button type="button" data-reload class="layui-btn layui-btn-xs">刷 新</button>
|
|
|
+ </th>
|
|
|
+ <th class='text-left nowrap' width="25%">账号信息</th>
|
|
|
+ <th class='text-left nowrap'>账号状态</th>
|
|
|
+ <th></th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ {/notempty}
|
|
|
+ <tbody>
|
|
|
+ {foreach $list as $key=>$vo}
|
|
|
+ <tr data-dbclick>
|
|
|
+ <td class='list-table-check-td think-checkbox'>
|
|
|
+ <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
|
|
|
+ </td>
|
|
|
+ <td class='list-table-sort-td'>
|
|
|
+ <label><input data-action-blur="{:request()->url()}" data-value="id#{$vo.id};action#sort;sort#{value}" data-loading="false" value="{$vo.sort}" class="list-sort-input"></label>
|
|
|
+ </td>
|
|
|
+ <td class='text-left nowrap'>
|
|
|
+ <img alt="img" width="40px" height="40px" class="text-top margin-right-10" data-tips-image src="{$vo.headimg|default=''}">
|
|
|
+ <div class="inline-block sub-span-blue">
|
|
|
+ 用户账号 <span><b>{$vo.username|default=''}</b></span> 用户昵称 <span><b>{$vo.nickname|default='-'|raw}</b></span><br>
|
|
|
+ 联系手机 <span>{$vo.contact_phone|default='<i class="color-desc">未配置</i>'|raw}</span>,
|
|
|
+ 联系邮箱 <span>{$vo.contact_mail|default='<i class="color-desc">未配置</i>'|raw}</span>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ <td class='text-left nowrap sub-span-blue'>
|
|
|
+ 账号创建于 <span>{$vo.create_at|format_datetime}</span> 共登录了 <span>{$vo.login_num|default=0}</span> 次<br>
|
|
|
+ {if $vo.login_at}
|
|
|
+ 最近于 <span>{$vo.login_at|format_datetime}</span> 通过 <span>{$vo.login_ip|default='--'}</span> 登录,{else}
|
|
|
+ <span class="color-desc">该账号还没有登录过哦,登录之后才会有记录!</span>
|
|
|
+ {/if}
|
|
|
+ {eq name='vo.status' value='0'}<b class="color-red">已禁用</b>{else}<b class="color-green">使用中</b>{/eq}
|
|
|
+ </td>
|
|
|
+ <td class='text-left nowrap'>
|
|
|
|
|
|
- {if auth("pass")}
|
|
|
- <a class="layui-btn layui-btn-sm layui-btn-normal" data-title="设置密码" data-modal='{:url("pass")}?id={$vo.id}'>密 码</a>
|
|
|
- {/if}
|
|
|
+ {if auth("pass")}
|
|
|
+ <a class="layui-btn layui-btn-sm layui-btn-normal" data-modal='{:url("pass")}?id={$vo.id}'>设置密码</a>
|
|
|
+ {/if}
|
|
|
|
|
|
- {if auth("edit")}
|
|
|
- <a data-dbclick class="layui-btn layui-btn-sm" data-title="编辑用户资料" data-modal='{:url("edit")}?id={$vo.id}'>编 辑</a>
|
|
|
- {/if}
|
|
|
+ {if auth("edit")}
|
|
|
+ <a data-dbclick class="layui-btn layui-btn-sm" data-modal='{:url("edit")}?id={$vo.id}'>编辑资料</a>
|
|
|
+ {/if}
|
|
|
|
|
|
- {if auth("state") and $vo.status eq 1}
|
|
|
- <a class="layui-btn layui-btn-sm layui-btn-warm" data-confirm="确定要禁用该用户吗?" data-action="{:url('state')}" data-value="id#{$vo.id};status#0" data-csrf="{:systoken('state')}">禁 用</a>
|
|
|
- {/if}
|
|
|
+ {if auth("state") and $vo.status eq 1}
|
|
|
+ <a class="layui-btn layui-btn-sm layui-btn-warm" data-confirm="确定要禁用该禁用账号吗?" data-action="{:url('state')}" data-value="id#{$vo.id};status#0" data-csrf="{:systoken('state')}">禁用账号</a>
|
|
|
+ {/if}
|
|
|
|
|
|
- {if auth("state") and $vo.status eq 0}
|
|
|
- <a class="layui-btn layui-btn-sm layui-btn-warm" data-confirm="确定要启用该用户吗?" data-action="{:url('state')}" data-value="id#{$vo.id};status#1" data-csrf="{:systoken('state')}">启 用</a>
|
|
|
- {/if}
|
|
|
-
|
|
|
- {if auth("remove")}
|
|
|
- <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除该用户吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}" data-csrf="{:systoken('remove')}">删 除</a>
|
|
|
- {/if}
|
|
|
-
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- {/foreach}
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
-
|
|
|
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ {/foreach}
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
|
|
|
+ {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
-
|
|
|
{/block}
|