1234567891011121314151617181920212223242526 |
- <div class="table" style="max-height: 2000px;">
- <table >
- <thead>
- <tr>
- <th width="5%">#</th>
- <th width="15%">省份代码</th>
- <th width="15%">省份名称</th>
- <th width="15%">小组评议老师</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="item in provinces">
- <td>{{$index+1}}</td>
- <td>{{item.province_id}}</td>
- <td>{{item.province_name}}</td>
- <td>{{item.team_review_user_name}}<a href="javascript:;" ng-click="selectUser(item)">分配小组评议老师</a></td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="pop_dblist" id="showExpert">
- <ul class="list">
- <li ng-repeat="list in dbexpertlists" ng-click="clickUser(list)"><label data-userid="{{list.id}}">{{list.name}}</label></li>
- </ul>
- </div>
|