123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,user-scalable=no">
- <meta name="format-detection" content="telephone=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta charset="UTF-8">
- <title>赏金统计</title>
- <style type="text/css">
- .table_list_box{
- overflow: hidden;
- margin: 16px;
- }
- .table_list_box table{
- margin: 0;
- padding: 0;
- width: 100%;
- text-align: center;
- background-color: #cdcdcd;
- }
- .table_list_box table th{
- margin: 0;
- padding: 0;
- height: 40px;
- font-size: 16px;
- color: #333;
- line-height: 40px;
- background-color: #efefef;
- border: 1px solid #ccc;
- text-align: center;
- }
- .table_list_box table td{
- margin: 0;
- padding: 0;
- height: 40px;
- font-size: 16px;
- color: #333;
- line-height: 40px;
- background-color: #fff;
- border: 1px solid #ccc;
- }
- .table_tit{
- margin: 16px 6px;
- overflow: hidden;
- background-color: #e5e5e5;
- }
- .table_tit div{
- float: left;
- width: 50%;
- padding: 30px 20px;
- background-color: #fff;
- border-left: 10px #fff solid;
- border-right: 10px #f1f4f6 solid;
- box-sizing: border-box;
- }
- .table_tit div strong{
- display: block;
- padding: 0;
- margin: 10px 0 0;
- font-size: 14px;
- color: #333;
- font-weight: normal;
- line-height: 24px;
- }
- .table_tit div span{
- display: block;
- padding: 0;
- margin: 6px 0 10px;
- font-size: 24px;
- color: #333;
- font-weight: normal;
- line-height: 30px;
- }
- .table_head_box{
- overflow: hidden;
- margin: 20px 16px;
- }
- .table_head_box strong{
- float: left;
- padding: 6px 10px 6px 0;
- font-size: 18px;
- color: #333;
- font-weight: normal;
- line-height: 24px;
- }
- .table_head_box a{
- float: right;
- padding: 0 60px;
- height: 36px;
- background-color: #d7d7d7;
- font-size: 16px;
- color: #333;
- text-decoration: none;
- line-height: 36px;
- }
- </style>
- </head>
- <body>
- {if condition="$type neq 1"}
- <div class="table_head_box">
- <strong>代理商:{$nickname} 的赏金统计</strong>
- <a href="javascript:history.back(-1)">返回</a>
- </div>
- {/if}
- <div class="table_tit">
- <div>
- <strong>今日赏金金额</strong>
- <span>¥{empty name="$resToday.reward"}0.00{else}{$resToday.reward}{/empty}</span>
- </div>
- <div>
- <strong>累计赏金金额</strong>
- <span>¥{empty name="$resAll.reward"}0.00{else /}{$resAll.reward}{/empty}</span>
- </div>
- </div>
- <div class="table_list_box">
- {empty name="$res"}
- <table border="0" cellpadding="0" cellspacing="1">
- <tr>
- <td>暂无赏金记录</td>
- </tr>
- </table>
- {else /}
- <table border="0" cellpadding="0" cellspacing="1">
- <tr>
- <th>日期</th>
- <th>赏金</th>
- </tr>
- {volist name="$res" id="vo"}
- <tr>
- <td>{$vo.createtime|date="Y-m-d",###}</td>
- <td>{$vo.reward}</td>
- </tr>
- {/volist}
- </table>
- {$res->render()}
- {/empty}
- </div>
- </body>
- </html>
|