index.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. {include file='integral/index_search'}
  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' style="width: 20%">头像</th>
  10. <th class='text-left nowrap' style="width: 30%">名称</th>
  11. <th class='text-left nowrap' style="width: 30%">变更数</th>
  12. <th class='text-left nowrap' style="width: 30%">描述</th>
  13. <th class="text-left nowrap">时间</th>
  14. </tr>
  15. </thead>
  16. {/notempty}
  17. <tbody>
  18. {foreach $list as $key=>$vo}
  19. <tr>
  20. <td class='text-left nowrap'>{notempty name='vo.headimg'}<img data-tips-image style="width:25px;height:25px;vertical-align:top" src="{$vo.headimg|default=''}" class="margin-right-5">{/notempty}</td>
  21. <td class='text-left nowrap'>{$vo.name|default='--'}</td>
  22. <td class='text-left nowrap'>{$vo.integral|default='--'}</td>
  23. <td class='text-left nowrap'>{$vo.desc|default='--'}</td>
  24. <td class='text-left nowrap'>{$vo.create_at}</td>
  25. </tr>
  26. {/foreach}
  27. </tbody>
  28. </table>
  29. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  30. </div>
  31. <script>
  32. </script>
  33. {/block}