1
0
Files
helper/application/system/view/member/junior.html
2020-08-06 14:58:51 +08:00

45 lines
1.3 KiB
HTML

{extend name="public/base" /}
{block name="body"}
<div class="layui-form admin-main">
<table class="layui-table">
<thead>
<tr>
<th >姓名</th>
<th>会员级别</th>
<th>电话</th>
<th>身份证</th>
<th>银行</th>
<th>卡号</th>
<th>密码</th>
<th>推荐人</th>
<th>推荐人编号</th>
<th>接点人</th>
<th>接点人编号</th>
<th>添加时间</th>
</tr>
</thead>
<tbody>
{volist name="list" id="vo"}
<tr>
<th >{$vo.username}</th>
<th>{$vo.level}</th>
<th>{$vo.mobile}</th>
<th>{$vo.id_card}</th>
<th>{$vo.bank}</th>
<th>{$vo.bank_card}</th>
<th>{$vo.password}</th>
<th>{$vo.referee}</th>
<th>{$vo.referee_number}</th>
<th>{$vo.contact}</th>
<th>{$vo.contact_number}</th>
<th>{$vo.create_time}</th>
</tr>
{/volist}
</tbody>
</table>
{$list->render();}
</div>
{/block}