index.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {extend name='admin@main'}
  2. {block name="button"}
  3. <!--<button onclick="history.go(-1);" class='layui-btn layui-btn-sm layui-btn-primary'>返 回</button>-->
  4. {/block}
  5. {block name="content"}
  6. <div class="think-box-shadow">
  7. {include file='user/index_search'}
  8. <table class="layui-table margin-top-10" lay-skin="line">
  9. {notempty name='list'}
  10. <thead>
  11. <tr>
  12. <th class='text-left nowrap' style="width: 10%">用户id</th>
  13. <th class='text-left nowrap' style="width: 10%">会员头像</th>
  14. <th class='text-left nowrap' style="width: 10%">会员昵称</th>
  15. <th class='text-left nowrap' style="width: 10%">真实姓名</th>
  16. <th class='text-left nowrap' style="width: 10%">手机号</th>
  17. <th class='text-left nowrap' style="width: 10%">上级id</th>
  18. <th class='text-left nowrap' style="width: 10%">上级真实姓名</th>
  19. <th class='text-left nowrap' style="width: 10%">上级手机号</th>
  20. <th class='text-left nowrap' style="width: 10%">直推人数</th>
  21. <th class='text-left nowrap' style="width: 10%">总人数</th>
  22. <th class='text-left nowrap' style="width: 10%">总业绩</th>
  23. </thead>
  24. {/notempty}
  25. <tbody>
  26. {foreach $list as $key=>$vo}
  27. <tr>
  28. <td class='text-left nowrap'>{$vo.id}</td>
  29. <td class='text-left nowrap'>
  30. {notempty name='vo.headimg'}
  31. <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.headimg|default=''}" class="margin-right-5">
  32. {/notempty}
  33. </td>
  34. <td class='text-left nowrap'>{$vo.name|default='--'}</td>
  35. <td class='text-left nowrap'>{$vo.true_name|default='--'}</td>
  36. <td class='text-left'>{$vo.phone|default='--'}</td>
  37. <td class='text-left'>{$vo.sup_id|default='--'}</td>
  38. <td class='text-left'>{$vo.sup_name|default='--'}</td>
  39. <td class='text-left'>{$vo.sup_phone|default='--'}</td>
  40. <td class='text-left'>{$vo.count|default='0'}</td>
  41. <td class='text-left'>{$vo.total_count|default='0'}</td>
  42. <td class='text-left'>{$vo.total_money|default='0'}</td>
  43. </tr>
  44. {/foreach}
  45. </tbody>
  46. </table>
  47. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  48. </div>
  49. {/block}