zcTeacher.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <div class="form">
  2. <div class="btn">
  3. <button name="" ng-click="zcTeacherModuleInit()">初始化页面权限</button>
  4. </div>
  5. <div class="btn">
  6. <button name="" ng-click="zcTeacherModuleUpdate()">保存设置</button>
  7. </div>
  8. </div>
  9. <div class="table">
  10. <table>
  11. <thead>
  12. <tr>
  13. <th width="15%">仲裁老师</th>
  14. <th width="10%">全选</th>
  15. <th width="75%">评分模块</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. <tr>
  20. <td ng-show="zcTeachers.length == 0" colspan="2" align="center">无任何数据</td>
  21. </tr>
  22. <tr ng-show="zcTeachers.length > 0" ng-repeat="list in zcTeachers">
  23. <td>{{list.name}}</td>
  24. <td><input type="checkbox" ng-model="list.selecteAll" ng-change="selectAllModules(list)"></td>
  25. <td>
  26. <table style="width: 100%">
  27. <tr>
  28. <td ng-repeat="item in userModuleMap[list.id]" width="8%" style="padding: 2px; background-color: {{!item.selected ? '' :'lightgoldenrodyellow'}}" >
  29. <input type="checkbox" ng-model="item.selected" >{{item.module}}
  30. </td>
  31. </tr>
  32. </table>
  33. </td>
  34. </tr>
  35. </tbody>
  36. </table>
  37. </div>