index.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. <table class="layui-table margin-top-10" lay-skin="line">
  5. {notempty name='list'}
  6. <thead>
  7. <tr>
  8. <th class='list-table-check-td think-checkbox'>
  9. <input data-auto-none data-check-target='.list-check-box' type='checkbox'>
  10. </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. <th class='text-left nowrap'>评论时间</th>
  16. </tr>
  17. </thead>
  18. {/notempty}
  19. <tbody>
  20. {foreach $list as $key=>$vo}
  21. <tr>
  22. <td class='list-table-check-td think-checkbox'>
  23. <input class="list-check-box" value='{$vo.id}' type='checkbox'>
  24. </td>
  25. <td class="text-left nowrap relative">
  26. {notempty name='vo.member.headimg'}
  27. <img data-tips-image style="width:40px;height:40px" src="{$vo.member.headimg|default=''}" class="margin-right-5 text-top">
  28. {/notempty}
  29. <div class="inline-block">
  30. 姓名:{$vo.member.name|default='--'}<br>
  31. 手机号:{$vo.member.phone|default='--'}<br>
  32. </div>
  33. </td>
  34. <td class='text-left nowrap'>{$film.name|default=''}</td>
  35. <td class='text-left nowrap'>{$vo.desc|default=''}</td>
  36. <td class='text-left nowrap'>
  37. {if $vo['images']}
  38. {foreach $vo['images'] as $v}
  39. <img data-tips-image style="width:40px;height:40px" src="{$v|default=''}" class="margin-right-5 text-top">
  40. {/foreach}
  41. {else}
  42. 暂无
  43. {/if}
  44. </td>
  45. <td class='text-left nowrap'>{$vo.create_at|default=''}</td>
  46. </tr>
  47. {/foreach}
  48. </tbody>
  49. </table>
  50. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  51. </div>
  52. {/block}