gudinglist.html 604 B

1234567891011121314
  1. <div class="table-responsive">
  2. <table ng-table="tableParams" class="table">
  3. <thead>
  4. <th>序号</th>
  5. <th ng-repeat="itemtitle in to.meanslisttitle">{{itemtitle.name}}</th>
  6. </thead>
  7. <tbody ng-repeat="p in $data">
  8. <tr id="tr{{p.id}}" ng-class-odd="'odd'" ng-class-even="'even'">
  9. <td class="rowTd ">{{$index+1+(tableParams.$params.page-1)*tableParams.$params.count}}</td>
  10. <td class="rowTd " ng-repeat="itemcon in to.meanslisttitle">{{p[itemcon.value]}}</td>
  11. </tr>
  12. </tbody>
  13. </table>
  14. </div>