12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!-- include 'header' -->
- <!-- include 'home_header' -->
- <form name="oderform" id="oderform" action="/home_pay_poder" method="get">
- <input type="hidden" name="time" id="time" value="{{time}}"/>
- <input type="hidden" name="on_page" id="on_page" value="{{on_page}}"/>
- <div class="centerTab">
- <ul class="clearfix">
- <li><a class="now" href="/home_pay_oder">交易记录</a></li>
- <li><a href="/home_recharge_oder">充值记录</a></li>
- </ul>
- </div>
- <div class="userItem">
- <div class="userIndex">
- <div class="myMsgBar">
- <select onchange="set_oder_time(this.value)">
- <option <!-- if {{time}}==0 -->selected<!-- endif --> value="0">全部</option>
- <option <!-- if {{time}}==7 -->selected<!-- endif --> value="7">最近一周</option>
- <option <!-- if {{time}}==30 -->selected<!-- endif --> value="30">最近一个月</option></select>
- 收入:<span class="colGreen">¥{{creditinfo.rich_adopt}}.00</span>元 支出:<span class="colOrange">¥{{creditinfo.rich_offer}}.00</span>元</div>
- <table class="userGlobalTable">
- <thead><tr><td style="width:80px">创建时间</td><td>名称</td><td>收/支(元)</td><td>金额</td></tr></thead>
- <tbody>
- <!-- loop credit3log.credit3log -->
- <tr><td>{{credit3log' value.date}}</td>
- <td>
- <!-- if {{credit3log' value.is_vip}}==0 -->
- <!-- if {{credit3log' value.amount}}>0 -->获得<!-- else -->发布悬赏<!-- endif -->
- <a href="/askpage/{{credit3log' value.question.id}}">{{credit3log' value.question.title}}</a>
- <!-- else -->
- 名师答疑
-
- <a href="advisory_page/{{credit3log' value.question.id}}">{{credit3log' value.question.title}}</a>
- <!-- endif -->
- </td>
- <!-- if {{credit3log' value.amount}}>0 -->
- <td><span class="colGreen">收入</span></td>
- <td><span class="colGreen">¥{{credit3log' value.amount}}.00</span></td>
- <!-- else -->
- <td><span class="colOrange">支出</span></td>
- <td><span class="colOrange">¥{{credit3log' value.amount}}.00</span></td>
- <!-- endif -->
-
- </tr>
- <!-- endloop -->
-
- </tbody>
- </table>
-
- <div class="pageNav2 clearfix">
- <div class="pageList">
- <!-- if {{credit3log.previous}}==0 -->
- <span class="inactivePrev">上一页</span>
- <!-- else -->
- <a href="javascript:void(0)" id="get_oder_{{credit3log.previous}}" data="{{credit3log.previous}}" class="inactivePrev" >上一页</a>
- <!-- endif -->
- {{credit3log.page}}
- <a href="javascript:void(0)" id="get_oder_{{credit3log.previous}}" data="{{credit3log.total_page}}"
- class="paginate">... {{credit3log.total_page}}</a>
- <!-- if {{credit3log.next}}=={{credit3log.on_page}} -->
- <span class="inactivePrev">下一页</span>
- <!-- else -->
- <a href="javascript:void(0)" id="get_oder_{{credit3log.next}}" data="{{credit3log.next}}" class="next">下一页</a>
- <!-- endif -->
- </div>
- </div>
-
-
- </div>
- </div>
- </form>
- </div>
- </div>
- <!-- include '/footer' -->
|