12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {extend name='admin@main'}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='gift/index_search'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='text-left nowrap' style="width: 15%">转赠/获赠用户</th>
- <th class='text-left nowrap' style="width: 15%">被转赠/获赠用户</th>
- <th class='text-left nowrap' style="width: 15%">藏品名称</th>
- <th class='text-left nowrap' style="width: 15%">标签</th>
- <th class='text-left nowrap' style="width: 15%">hash</th>
- <th class='text-left nowrap' >订单号</th>
- <th class='text-left nowrap' style="width: 15%">类型</th>
- <th class='text-left nowrap' style="width: 20%">转赠时间</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class="text-left nowrap relative">
- <img data-tips-image style="width:50px;height:50px" src="{$vo.from_headimg|default=''}" class="margin-right-5 text-top">
- <div class="inline-block">
- 会员名称:{$vo.from_name|default='--'}<br>
- 手机号:{$vo.from_phone|default='--'}<br>
- </div>
- </td>
- <td class="text-left nowrap relative">
- <img data-tips-image style="width:50px;height:50px" src="{$vo.to_headimg|default=''}" class="margin-right-5 text-top">
- <div class="inline-block">
- 会员名称:{$vo.to_name|default='--'}<br>
- 手机号:{$vo.to_phone|default='--'}<br>
- </div>
- </td>
- <td class='text-left'>{$vo.pro_info.name|default='--'}</td>
- <td class='text-left'>{$vo.tag|default='--'}</td>
- <td class='text-left'>{$vo.collectors_hash|default='发放中'}</td>
- <td class='text-left'>{$vo.order_no|default='--'}</td>
- <td class='text-left'>
- {eq name='vo.status' value='2'}转赠{/eq}
- {eq name='vo.status' value='3'}获赠{/eq}
- </td>
- <td class='text-left'>{$vo.over_time}</td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|