123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- {extend name='admin@main'}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='member_basic/index_search'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='list-table-check-td think-checkbox'>
- <input data-auto-none data-check-target='.list-check-box' type='checkbox'>
- </th>
- <th class='text-left nowrap'>序号</th>
- <th class='text-left nowrap'>昵称</th>
- <th class='text-left nowrap'>真实姓名</th>
- <th class='text-left nowrap'>性别</th>
- <th class='text-left nowrap'>身份证号</th>
- <th class='text-left nowrap'>年龄</th>
- <th class='text-left nowrap'>学历</th>
- <th class='text-left nowrap'>身高</th>
- <th class='text-left nowrap'>体重</th>
- <th class='text-left nowrap'>居住地</th>
- <th class='text-left nowrap'>个人生活照</th>
- <th class='text-left nowrap'>手机号</th>
- <th class='text-left nowrap'>提交时间</th>
- <th class='text-left nowrap'>驳回原因</th>
- <th class='text-left nowrap'>操作</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='list-table-check-td think-checkbox'>
- <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
- </td>
- <td class='list-table-check-td think-checkbox'>
- <div class="inline-block">{$vo.id|default='--'}</div>
- </td>
- <td class='text-left nowrap'>
- <div class="inline-block">{$vo.nickname|default='--'}</div>
- </td>
- <td class='text-left nowrap'>
- <div class="inline-block">{$vo.username|default='--'}</div>
- </td>
- <td class='text-left'>
- {if $vo.sex eq 1} 男
- {elseif $vo.sex eq 2} 女
- {/if}
- </td>
- <td class='text-left'>{$vo.ID_car|default='--'}</td>
- <td class='text-left'>{$vo.age|default='--'}</td>
- <td class='text-left'>{$vo.education|default='--'}</td>
- <td class='text-left'>{$vo.height|default='--'}</td>
- <td class='text-left'>{$vo.weight|default='--'}</td>
- <td class='text-left'>{$vo.area_id|default='--'}</td>
- <td> <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.headimg|default=''}" class="margin-right-5"></td>
- <td class='text-left'>{$vo.phone|default='--'}</td>
- <td class='text-left'>{$vo.create_at|format_datetime}</td>
- <td class='text-left'>{$vo.reason|default='--'}</td>
- <td class='text-left'>
- {if $vo.state==0}
- <a data-dbclick data-title="审核" class="layui-btn layui-btn-xs" data-modal='{:url("edit")}?id={$vo.id}'>审 核</a>
- {/if}
- {if $vo.state==1}
- 审核通过
- {/if}
- {if $vo.state==2}
- 已拒绝
- {/if}
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|