std_bill.html 668 B

1234567891011121314151617181920212223242526272829303132
  1. <div>
  2. <div class="page-header">
  3. <span class="title">{{summary}}</span>
  4. </div>
  5. <table class="guide-table table b-t b-light table-responsive table-hover">
  6. <thead>
  7. <tr>
  8. <th>报考信息</th>
  9. <th>缴费金额</th>
  10. <th>缴费状态</th>
  11. <th>缴费方式</th>
  12. <th>缴费时间</th>
  13. <th>订单号</th>
  14. </thead>
  15. <tbody>
  16. <tr ng-repeat="item in array" ng-class="{'danger': item.s08=='Refund'}">
  17. <td>{{item.s01}}({{item.s03}})</td>
  18. <td>{{item.i05/100 | currency: '&yen'}}</td>
  19. <td>{{item.s08 | billStatus}}</td>
  20. <td>{{item.s06}}</td>
  21. <td>{{item.ldt01}}</td>
  22. <td>
  23. {{item.s07}}
  24. </td>
  25. </tr>
  26. </tbody>
  27. </table>
  28. </div>