assignment-popup-popup.html 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <div class="modal" ng-controller="KisBpmChoseAssignmentCtrl">
  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="height: 450px;">
  10. <div class="row row-no-gutter" style="padding: 0 20px 10px 20px">
  11. <div class="btn-group btn-group-sm">
  12. <!-- <button type="button" class="btn btn-default"
  13. ng-click="queryByRole('oa_user')"> 全部
  14. </button> -->
  15. <!-- <button type="button" class="btn btn-default" ng-repeat="role in roles"
  16. ng-click="queryByRole(role.id)"> {{role.name}}
  17. </button> -->
  18. </div>
  19. </div>
  20. <div class="row row-no-gutter" style="padding: 0 20px;height: 370px;overflow-x: auto">
  21. <div class="input-group col-md-6 input-group-sm" style="padding: 10px 0 5px 0">
  22. <input type="text" class="form-control" placeholder="请输入用户姓名或用户名" ng-model="keyword">
  23. <span class="input-group-btn">
  24. <button class="btn btn-default" type="button" ng-click="queryByKeyword()"><span class="glyphicon glyphicon-search"></span></button>
  25. </span>
  26. </div>
  27. <table id="userTable" class="table table-bordered table-condensed table-hover table-striped">
  28. <thead>
  29. <tr class="active">
  30. <th style="text-align: center;width: 100px">序号</th>
  31. <th style="text-align: center;width: 200px">姓名</th>
  32. <th style="text-align: center;width: 200px">用户名</th>
  33. </tr>
  34. </thead>
  35. <tbody>
  36. <tr ng-repeat="account in accounts" style="text-align: center"
  37. ng-class="account.checked==true||account.selected==true?'info':''"
  38. ng-click="rowClick(account.id)">
  39. <td ng-value="account.name">{{$index+1}}</td>
  40. <td ng-value="account.name">{{account.name}}</td>
  41. <td>{{account.code}}</td>
  42. </tr>
  43. </tbody>
  44. </table>
  45. </div>
  46. </div>
  47. <div class="modal-footer">
  48. <tm-pagination conf="paginationConf"></tm-pagination>
  49. <!-- <button ng-if="choseAssignmentFlag=='assignees'" type="button" class="btn btn-default"
  50. ng-click="selectAll()">全选
  51. </button> -->
  52. <button ng-click="close()" translate class="btn btn-inverse">ACTION.CANCEL</button>
  53. <button ng-click="save()" class="btn btn-primary" translate>ACTION.SAVE</button>
  54. </div>
  55. </div>
  56. </div>
  57. </div>