- <div class="table-responsive">
- <table ng-table="tableParams" class="table">
- <thead>
- <th>序号</th>
- <th ng-repeat="itemtitle in to.meanslisttitle">{{itemtitle.name}}</th>
- </thead>
- <tbody ng-repeat="p in $data">
- <tr id="tr{{p.id}}" ng-class-odd="'odd'" ng-class-even="'even'">
- <td class="rowTd ">{{$index+1+(tableParams.$params.page-1)*tableParams.$params.count}}</td>
- <td class="rowTd " ng-repeat="itemcon in to.meanslisttitle">{{p[itemcon.value]}}</td>
- </tr>
- </tbody>
- </table>
- </div>
|