12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title></title>
- </head>
- <div class="well well-lg"><img style="width: 100px;" src="{$userInfo.avatar}" class="img-rounded"><span style="margin-left: 25px;">分销商:{$userInfo.nickname}</span></div>
- {notempty name="$users"}
- <table class="table table-bordered">
- <caption>读者统计</caption>
- <thead>
- <tr>
- <th>总人数</th>
- <th>男</th>
- <th>女</th>
- <th>已关注数量</th>
- <th>付费人数</th>
- <th>更新时间</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{$users.increase}</td>
- <td>{$users.increase_m}</td>
- <td>{$users.increase_f}</td>
- <td>{$users.increase_fllow}</td>
- <td>{$users.increase_recharge}</td>
- <td>{$users.updatetime|date="y-m-d h:i:s",###}</td>
- </tr>
- </tbody>
- </table>
- {else /}
- <div style="text-align:center;">暂无读者信息</div>
- {/notempty}
- <br/>
- {notempty name="$collect"}
- <table class="table table-bordered">
- <caption>订单统计</caption>
- <thead>
- <tr>
- <th>充值金额</th>
- <th>普通充值订单总数</th>
- <th>普通充值成功金额</th>
- <th>普通充值成功书引导金额</th>
- <th>VIP充值订单总数</th>
- <th>VIP充值成功金额</th>
- <th>VIP充值成功引导金额</th>
- <th>更新时间</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{$collect.recharge_money}</td>
- <td>{$collect.normal_recharge_orders_count}</td>
- <td>{$collect.normal_recharge_money}</td>
- <td>{$collect.noraml_recharge_guide_money}</td>
- <td>{$collect.vip_recharge_orders_count}</td>
- <td>{$collect.vip_recharge_money}</td>
- <td>{$collect.vip_recharge_guide_money}</td>
- <td>{$collect.updatetime|date="y-m-d h:i:s",###}</td>
- </tr>
- </tbody>
- </table>
- {else /}
- <div style="text-align:center;">暂无订单信息</div>
- {/notempty}
- </body>
- </html>
|