assignment-candidateGroup.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <div class="modal" ng-controller="KisBpmChoseCandidateGroupsCtrl">
  2. <div class="modal-dialog">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <button type="button" class="close" data-dismiss="modal" aria-hidden="true" ng-click="close()">&times;
  6. </button>
  7. <h2 translate>PROPERTY.ASSIGNMENT.TITLE</h2>
  8. </div>
  9. <div class="modal-body" style="min-height: 350px;overflow: auto;">
  10. <div class="row row-no-gutter" style="padding: 0 20px">
  11. <table class="table table-bordered table-condensed table-hover table-striped">
  12. <thead>
  13. <tr class="active">
  14. <th style="text-align: center">序号</th>
  15. <th style="text-align: center">组名</th>
  16. <th style="text-align: center">描述</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. <tr style="text-align: center" ng-repeat="candidateGroup in candidateGroups"
  21. ng-class="candidateGroup.selected==true?'info':''" ng-click="rowClick(candidateGroup.id)">
  22. <td>{{$index+1}}</td>
  23. <td>{{candidateGroup.name}}</td>
  24. <td>{{candidateGroup.description}}</td>
  25. </tr>
  26. </tbody>
  27. </table>
  28. </div>
  29. </div>
  30. <div class="modal-footer">
  31. <!-- <button type="button" class="btn btn-default"ng-click="selectAll()">全选</button> -->
  32. <button ng-click="close()" class="btn btn-primary" translate>ACTION.CANCEL</button>
  33. <button ng-click="save()" class="btn btn-primary" translate>ACTION.SAVE</button>
  34. </div>
  35. </div>
  36. </div>
  37. </div>