1234567891011121314151617181920212223242526272829303132 |
- <div>
- <div class="page-header">
- <span class="title">{{summary}}</span>
- </div>
- <table class="guide-table table b-t b-light table-responsive table-hover">
- <thead>
- <tr>
- <th>报考信息</th>
- <th>缴费金额</th>
- <th>缴费状态</th>
- <th>缴费方式</th>
- <th>缴费时间</th>
- <th>订单号</th>
- </thead>
- <tbody>
- <tr ng-repeat="item in array" ng-class="{'danger': item.s08=='Refund'}">
- <td>{{item.s01}}({{item.s03}})</td>
- <td>{{item.i05/100 | currency: '¥'}}</td>
- <td>{{item.s08 | billStatus}}</td>
- <td>{{item.s06}}</td>
- <td>{{item.ldt01}}</td>
- <td>
- {{item.s07}}
- </td>
- </tr>
- </tbody>
- </table>
- </div>
|