flow.html 878 B

1234567891011121314151617181920212223242526272829
  1. {extend name='admin@main'}
  2. {block name="button"}{/block}
  3. {block name="content"}
  4. <div class="think-box-shadow">
  5. <table class="layui-table margin-top-10" lay-skin="line">
  6. {notempty name='list'}
  7. <thead>
  8. <tr>
  9. <th class='text-left nowrap'>名称</th>
  10. <th class="text-center">操作</th>
  11. </tr>
  12. </thead>
  13. {/notempty}
  14. <tbody>
  15. {foreach $list as $key=>$vo}
  16. <tr>
  17. <td class='text-left nowrap'>{$vo|default='--'}</td>
  18. <td class='text-center nowrap'>
  19. <a class="layui-btn layui-btn-xs" data-open='{:url("index")}?module={$key}'>编 辑</a>
  20. </td>
  21. </tr>
  22. {/foreach}
  23. </tbody>
  24. </table>
  25. {empty name='list'}<span class="notdata">没 有 记 录 哦!</span>{else}{$pagehtml|raw|default=''}{/empty}
  26. </div>
  27. {/block}