index.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {extend name='main'}
  2. {block name="button"}
  3. {if auth("add")}
  4. <button data-modal='{:url("add")}' data-title="添加用户" class='layui-btn layui-btn-sm layui-btn-primary'>添加用户</button>
  5. {/if}
  6. {if auth("remove")}
  7. <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>
  8. {/if}
  9. {/block}
  10. {block name="content"}
  11. <div class="think-box-shadow">
  12. {include file='user/index_search'}
  13. <table class="layui-table margin-top-10" lay-skin="line">
  14. {notempty name='list'}
  15. <thead>
  16. <tr>
  17. <th class='list-table-check-td think-checkbox'>
  18. <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
  19. </th>
  20. <th class='text-left nowrap'>用户账号</th>
  21. <th class='text-center nowrap'>登录次数</th>
  22. <th class='text-center nowrap'>使用状态</th>
  23. <th class='text-left nowrap'>创建时间</th>
  24. <th class='text-left nowrap'>登录时间</th>
  25. <th class='text-left nowrap'></th>
  26. </tr>
  27. </thead>
  28. {/notempty}
  29. <tbody>
  30. {foreach $list as $key=>$vo}
  31. <tr data-dbclick>
  32. <td class='list-table-check-td think-checkbox'>
  33. <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
  34. </td>
  35. <td class='text-left nowrap'>{$vo.username|default=''}</td>
  36. <td class='text-center nowrap'>{$vo.login_num|default=0}</td>
  37. <td class='text-center nowrap'>{eq name='vo.status' value='0'}<span class="color-red">已禁用</span>{else}<span class="color-green">使用中</span>{/eq}</td>
  38. <td class='text-left nowrap'>{$vo.create_at|format_datetime}</td>
  39. <td class='text-left nowrap'>{if $vo.login_num>0}{$vo.login_at|format_datetime}{else} - {/if}</td>
  40. <td class='text-left nowrap'>
  41. {if auth("pass")}
  42. <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="设置密码" data-modal='{:url("pass")}?id={$vo.id}'>密 码</a>
  43. {/if}
  44. {if auth("edit")}
  45. <a data-dbclick class="layui-btn layui-btn-sm" data-title="编辑用户" data-modal='{:url("edit")}?id={$vo.id}'>编 辑</a>
  46. {/if}
  47. {if $vo.status eq 1 and auth("forbid")}
  48. <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('forbid')}" data-value="id#{$vo.id};status#0" data-csrf="{:systoken('forbid')}">禁 用</a>
  49. {elseif $vo.status eq 0 and auth("resume")}
  50. <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('resume')}" data-value="id#{$vo.id};status#1" data-csrf="{:systoken('resume')}">启 用</a>
  51. {/if}
  52. {if auth("remove")}
  53. <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>
  54. {/if}
  55. </td>
  56. </tr>
  57. {/foreach}
  58. </tbody>
  59. </table>
  60. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  61. </div>
  62. {/block}