1234567891011121314151617181920212223242526272829 |
- {extend name='admin@main'}
- {block name="button"}{/block}
- {block name="content"}
- <div class="think-box-shadow">
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='text-left nowrap'>名称</th>
- <th class="text-center">操作</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='text-left nowrap'>{$vo|default='--'}</td>
- <td class='text-center nowrap'>
- <a class="layui-btn layui-btn-xs" data-open='{:url("index")}?module={$key}'>编 辑</a>
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没 有 记 录 哦!</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|