balance.html 1.6 KB
<include file="public@header"/>
</head>
<body>
<div class="wrap">
    <ul class="nav nav-tabs">
        <li><a href="{:url('index')}">{:lang('USER_INDEXADMIN_INDEX')}</a></li>
        <li class="active"><a href="javascript:;">积分详情</a></li>
    </ul>
        <table class="table table-hover table-bordered" style="width: 50%;margin-top: 30px">
            <thead>
            <tr>
                <th>类型</th>
                <th>变更时间</th>
                <th>变更额度</th>
                <!--<th>变更后余额</th>-->
            </tr>
            </thead>
            <tbody>
            <foreach name="list" item="vo">
                <tr>
                    <td>
                        <if condition="$vo.type eq 1">
                            购物收入
                            <elseif condition="$vo.type eq 2">
                                购物支出
                                <elseif condition="$vo.type eq 3">
                                    好友赠送收入
                                    <elseif condition="$vo.type eq 4">
                                        好友赠送支出
                                        <elseif condition="$vo.type eq 5">
                                            好友购物返利
                        </if>
                    </td>
                    <td>{:date('Y-m-d H:i',$vo.create_time)}</td>

                    <td>{$vo['balance']}</td>
                </tr>
            </foreach>
            </tbody>
        </table>
        <div class="pagination">{$page}</div>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>