rotate.tpl.html 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!-- 转派 -->
  2. <div class="modal-header">
  3. <div class="modal-title fontcolor-two fontsizes-14">转派对象
  4. <button type="button" class="close pull-right" ng-click="cancel()">×</button>
  5. </div>
  6. </div>
  7. <div class="modal-body center">
  8. <div class="form-group incidentsearch" style="margin:0 auto;">
  9. <div class=" input-group" style="margin:30px 0 ;">
  10. <div class="control-label pull-left margin-top-5 margin-right-5">
  11. <label class="demoincident">角色</label>:</div>
  12. <div class="pull-right wt_selectzise">
  13. <!-- <ui-select class="pull-left" style="width:130px" ng-model="choosUser.role" theme="bootstrap"
  14. ng-change="onChangeRole($select.selected)">
  15. <ui-select-match placeholder="">
  16. {{$select.selected.role}}
  17. </ui-select-match>
  18. <ui-select-choices repeat="item in role | filter: $select.role">
  19. <div ng-bind-html="item.role | highlight: $select.role"></div>
  20. </ui-select-choices>
  21. </ui-select> -->
  22. <input type="text" class="pull-left" style="width: 130px;
  23. height: 34px;
  24. border-radius: 2px;text-align: center;border: 0px;" ng-model="upRole" disabled>
  25. <!-- <span class="input-group-btn pull-right">
  26. <button ng-click="choosUser.role = undefined" class="btn btn-default">
  27. <span class="glyphicon glyphicon-trash"></span>
  28. </button>
  29. </span> -->
  30. </div>
  31. </div>
  32. <div class=" input-group" style="margin:30px 0 ;">
  33. <div class="control-label pull-left margin-top-5 margin-right-5">
  34. <label class="demoincident">工作组</label>:</div>
  35. <div class="pull-right">
  36. <ui-select class="pull-left" style="width:130px" ng-model="choosUser.group" theme="bootstrap" ng-change="onChangeGroup($select.selected)">
  37. <ui-select-match placeholder="">
  38. {{$select.selected.groupName}}
  39. </ui-select-match>
  40. <ui-select-choices repeat="item in group | filter: $select.groupName">
  41. <div ng-bind-html="item.groupName | highlight: $select.groupName"></div>
  42. </ui-select-choices>
  43. </ui-select>
  44. <!-- <span class="input-group-btn pull-right">
  45. <button ng-click="choosUser.group = undefined" class="btn btn-default">
  46. <span class="glyphicon glyphicon-trash"></span>
  47. </button>
  48. </span> -->
  49. </div>
  50. </div>
  51. <div class=" input-group" style="margin:30px 0 ;">
  52. <div class="control-label pull-left margin-top-5 margin-right-5">
  53. <label class="demoincident">处理人</label>:</div>
  54. <div class="pull-right">
  55. <ui-select class="pull-left" style="width:130px" ng-model="choosUser.handlerUser" theme="bootstrap" ng-change="onChangeRotateUser($select.selected)">
  56. <ui-select-match placeholder="">
  57. {{$select.selected.name}}
  58. </ui-select-match>
  59. <ui-select-choices repeat="item in user | filter: $select.name">
  60. <div ng-bind-html="item.name | highlight: $select.name"></div>
  61. </ui-select-choices>
  62. </ui-select>
  63. <!-- <span class="input-group-btn pull-right">
  64. <button ng-click="choosUser.rotateUser = undefined" class="btn btn-default">
  65. <span class="glyphicon glyphicon-trash"></span>
  66. </button>
  67. </span> -->
  68. </div>
  69. </div>
  70. </div>
  71. </div>
  72. <div class="modal-footer modelfooter-hint pointfont">
  73. <div class="hintfooterleft pull-left" ng-click="ok()" translate="modal.button.OK ">OK</div>
  74. <div class="hintfooterright pull-right" ng-click="cancel() " translate="modal.button.CANCEL ">Cancel</div>
  75. </div>