teamReviewTask_table.html 747 B

1234567891011121314151617181920212223242526
  1. <div class="table" style="max-height: 2000px;">
  2. <table >
  3. <thead>
  4. <tr>
  5. <th width="5%">#</th>
  6. <th width="15%">省份代码</th>
  7. <th width="15%">省份名称</th>
  8. <th width="15%">小组评议老师</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <tr ng-repeat="item in provinces">
  13. <td>{{$index+1}}</td>
  14. <td>{{item.province_id}}</td>
  15. <td>{{item.province_name}}</td>
  16. <td>{{item.team_review_user_name}}<a href="javascript:;" ng-click="selectUser(item)">分配小组评议老师</a></td>
  17. </tr>
  18. </tbody>
  19. </table>
  20. </div>
  21. <div class="pop_dblist" id="showExpert">
  22. <ul class="list">
  23. <li ng-repeat="list in dbexpertlists" ng-click="clickUser(list)"><label data-userid="{{list.id}}">{{list.name}}</label></li>
  24. </ul>
  25. </div>