list.html 2.2 KB
<include file="public@header"/>
</head>
<body>
<div class="wrap">
    <ul class="nav nav-tabs">
        <li class="active"><a>提现列表</a></li>
    </ul>
    <form class="well form-inline margin-top-20" method="post" action="{:url('user/withdraw/getList')}">
        关键字:
        <input class="form-control" type="text" name="keyword" style="width: 200px;" value="{:input('request.keyword')}"
               placeholder="请输入关键字用户昵称">
        时间:
        <input type="text" class="form-control js-bootstrap-datetime" name="start_time"
               value="{:input('request.start_time')}"
               style="width: 140px;" autocomplete="off">-
        <input type="text" class="form-control js-bootstrap-datetime" name="end_time"
               value="{:input('request.end_time')}"
               style="width: 140px;" autocomplete="off"> &nbsp; &nbsp;
        <input type="submit" class="btn btn-primary" value="搜索"/>
        <a class="btn btn-danger" href="{:url('user/withdraw/getList')}">重置</a>
    </form>
    <form method="post" class="js-ajax-form">
        <table class="table table-hover table-bordered">
            <thead>
            <tr>
                <th>序号</th>
                <th>用户昵称</th>
                <th>提现金额</th>
                <th>手续费</th>
                <th>身份</th>
                <th>创建时间</th>
                <!--<th>操作</th>-->
            </tr>
            </thead>
            <tbody>
            <foreach name="list" item="vo" key =key>
                <tr>
                    <td>{$key+1}</td>
                    <td>{$vo.user_nickname}</td>
                    <td>{$vo.money}</td>
                    <td>{$vo.charge}%</td>
                    <td><if condition="$vo.user_type == 2">普通用户<else/>信贷员</if></td>
                    <td>{$vo['pay_time']}</td>
                    <!--<td>
                        <a href="{:url('leave/getInfo',array('id'=>$vo['id']))}"
                           class="">查看详情</a>
                    </td>-->
                </tr>
            </foreach>
            </tbody>
        </table>
        <div class="pagination">{$page}</div>
    </form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>