index.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. {include file='gift/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: 15%">转赠/获赠用户</th>
  10. <th class='text-left nowrap' style="width: 15%">被转赠/获赠用户</th>
  11. <th class='text-left nowrap' style="width: 15%">藏品名称</th>
  12. <th class='text-left nowrap' style="width: 15%">标签</th>
  13. <th class='text-left nowrap' style="width: 15%">hash</th>
  14. <th class='text-left nowrap' >订单号</th>
  15. <th class='text-left nowrap' style="width: 15%">类型</th>
  16. <th class='text-left nowrap' style="width: 20%">转赠时间</th>
  17. </tr>
  18. </thead>
  19. {/notempty}
  20. <tbody>
  21. {foreach $list as $key=>$vo}
  22. <tr>
  23. <td class="text-left nowrap relative">
  24. <img data-tips-image style="width:50px;height:50px" src="{$vo.from_headimg|default=''}" class="margin-right-5 text-top">
  25. <div class="inline-block">
  26. 会员名称:{$vo.from_name|default='--'}<br>
  27. 手机号:{$vo.from_phone|default='--'}<br>
  28. </div>
  29. </td>
  30. <td class="text-left nowrap relative">
  31. <img data-tips-image style="width:50px;height:50px" src="{$vo.to_headimg|default=''}" class="margin-right-5 text-top">
  32. <div class="inline-block">
  33. 会员名称:{$vo.to_name|default='--'}<br>
  34. 手机号:{$vo.to_phone|default='--'}<br>
  35. </div>
  36. </td>
  37. <td class='text-left'>{$vo.pro_info.name|default='--'}</td>
  38. <td class='text-left'>{$vo.tag|default='--'}</td>
  39. <td class='text-left'>{$vo.collectors_hash|default='发放中'}</td>
  40. <td class='text-left'>{$vo.order_no|default='--'}</td>
  41. <td class='text-left'>
  42. {eq name='vo.status' value='2'}转赠{/eq}
  43. {eq name='vo.status' value='3'}获赠{/eq}
  44. </td>
  45. <td class='text-left'>{$vo.over_time}</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}