index.html 1.4 KB

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