1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {extend name='admin@main'}
- {block name="button"}
- <!--<button onclick="history.go(-1);" class='layui-btn layui-btn-sm layui-btn-primary'>返 回</button>-->
- {/block}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='user/index_search'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='text-left nowrap' style="width: 10%">用户id</th>
- <th class='text-left nowrap' style="width: 10%">会员头像</th>
- <th class='text-left nowrap' style="width: 10%">会员昵称</th>
- <th class='text-left nowrap' style="width: 10%">真实姓名</th>
- <th class='text-left nowrap' style="width: 10%">手机号</th>
- <th class='text-left nowrap' style="width: 10%">上级id</th>
- <th class='text-left nowrap' style="width: 10%">上级真实姓名</th>
- <th class='text-left nowrap' style="width: 10%">上级手机号</th>
- <th class='text-left nowrap' style="width: 10%">直推人数</th>
- <th class='text-left nowrap' style="width: 10%">总人数</th>
- <th class='text-left nowrap' style="width: 10%">总业绩</th>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='text-left nowrap'>{$vo.id}</td>
- <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>
- <td class='text-left nowrap'>{$vo.name|default='--'}</td>
- <td class='text-left nowrap'>{$vo.true_name|default='--'}</td>
- <td class='text-left'>{$vo.phone|default='--'}</td>
- <td class='text-left'>{$vo.sup_id|default='--'}</td>
- <td class='text-left'>{$vo.sup_name|default='--'}</td>
- <td class='text-left'>{$vo.sup_phone|default='--'}</td>
- <td class='text-left'>{$vo.count|default='0'}</td>
- <td class='text-left'>{$vo.total_count|default='0'}</td>
- <td class='text-left'>{$vo.total_money|default='0'}</td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|