index.html 881 B

12345678910111213141516171819202122232425262728
  1. {extend name='admin@main'}
  2. {block name="button"}{/block}
  3. {block name="content"}
  4. <div class="think-box-shadow">
  5. {include file='department/index_search'}
  6. <table class="layui-table margin-top-10" lay-skin="line">
  7. {notempty name='list'}
  8. <thead>
  9. <tr>
  10. <th class='text-left nowrap'>部门ID</th>
  11. <th class='text-left nowrap'>部门名称</th>
  12. </tr>
  13. </thead>
  14. {/notempty}
  15. <tbody>
  16. {foreach $list as $key=>$vo}
  17. <tr>
  18. <td class='text-left nowrap'>{$vo.id|default='--'}</td>
  19. <td class="text-left nowrap"><span class="color-desc">{$vo.spl|raw}</span>{$vo.name|default='--'}</td>
  20. </tr>
  21. {/foreach}
  22. </tbody>
  23. </table>
  24. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  25. </div>
  26. {/block}