index.html 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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-left nowrap'>联系手机</th>
  22. <th class='text-center nowrap'>登录次数</th>
  23. <th class='text-center nowrap'>使用状态</th>
  24. <th class='text-left nowrap'>创建时间</th>
  25. <th class='text-left nowrap'>登录时间</th>
  26. <th class='text-left nowrap'></th>
  27. </tr>
  28. </thead>
  29. {/notempty}
  30. <tbody>
  31. {foreach $list as $key=>$vo}
  32. <tr data-dbclick>
  33. <td class='list-table-check-td think-checkbox'>
  34. <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
  35. </td>
  36. <td class='text-left nowrap'>{$vo.username|default=''}</td>
  37. <td class='text-left nowrap'>{$vo.phone|default='-'}</td>
  38. <td class='text-center nowrap'>{$vo.login_num|default=0}</td>
  39. <td class='text-center nowrap'>{eq name='vo.status' value='0'}<span class="color-red">已禁用</span>{else}<span class="color-green">使用中</span>{/eq}</td>
  40. <td class='text-left nowrap'>{$vo.create_at|format_datetime}</td>
  41. <td class='text-left nowrap'>{if $vo.login_num>0}{$vo.login_at|format_datetime}{else} - {/if}</td>
  42. <td class='text-left nowrap'>
  43. {if auth("pass")}
  44. <a class="layui-btn layui-btn-normal layui-btn-sm" data-title="设置密码" data-modal='{:url("pass")}?id={$vo.id}'>密 码</a>
  45. {/if}
  46. {if auth("edit")}
  47. <a data-dbclick class="layui-btn layui-btn-sm" data-title="编辑用户" data-modal='{:url("edit")}?id={$vo.id}'>编 辑</a>
  48. {/if}
  49. {if $vo.status eq 1 and auth("forbid")}
  50. <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>
  51. {elseif $vo.status eq 0 and auth("resume")}
  52. <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>
  53. {/if}
  54. {if auth("remove")}
  55. <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>
  56. {/if}
  57. </td>
  58. </tr>
  59. {/foreach}
  60. </tbody>
  61. </table>
  62. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  63. </div>
  64. {/block}