feedbackList.html 1.5 KB

123456789101112131415161718192021222324252627282930
  1. <div class="btn">
  2. <button class="btm btn-primary" name="" class="query" ng-click="exportsFeedbackData()">导出意见列表</button>
  3. </div>
  4. <div class="table">
  5. <table>
  6. <thead>
  7. <tr>
  8. <!-- <th width="15%">报名年份</th> -->
  9. <th width="15%">评审专家</th>
  10. <th width="55%">意见反馈</th>
  11. <th width="15%">创建时间</th>
  12. <th width="15%">更新时间</th>
  13. </tr>
  14. </thead>
  15. <tbody ng-init="getPrePublishData('1')">
  16. <tr>
  17. <td ng-show="pageData.totalCounts == 0" colspan="6" align="center">无任何数据</td>
  18. </tr>
  19. <tr ng-show="pageData.totalCounts > 0" ng-repeat="list in prepublishlists">
  20. <!-- <td>{{list.year}}</td> -->
  21. <td>{{list.userName}}</td>
  22. <td>{{list.feedback}}</td>
  23. <td>{{list.createTime}}</td>
  24. <td>{{list.updateTime}}</td>
  25. </tr>
  26. </tbody>
  27. </table>
  28. </div>
  29. <div class="page" ng-show="pageData.totalPages > 1"><span>{{pageData.totalCounts}}条记录</span><a href="javascript:;" class="first" ng-click="bmFirstPage()">首页</a><a href="javascript:;" class="prev" ng-click="bmPrevPage()">上一页</a><span>{{pageData.pageIndex}}/{{pageData.totalPages}}页</span><a href="javascript:;" class="next" ng-click="bmNextPage()">下一页</a><a href="javascript:;" class="last" ng-click="bmLastPage()">尾页</a></div>