123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <!-- 转派 -->
- <div class="modal-header">
- <div class="modal-title fontcolor-two fontsizes-14">转派对象
- <button type="button" class="close pull-right" ng-click="cancel()">×</button>
- </div>
- </div>
- <div class="modal-body center">
- <div class="form-group incidentsearch" style="margin:0 auto;">
- <div class=" input-group" style="margin:30px 0 ;">
- <div class="control-label pull-left margin-top-5 margin-right-5">
- <label class="demoincident">角色</label>:</div>
- <div class="pull-right wt_selectzise">
- <!-- <ui-select class="pull-left" style="width:130px" ng-model="choosUser.role" theme="bootstrap"
- ng-change="onChangeRole($select.selected)">
- <ui-select-match placeholder="">
- {{$select.selected.role}}
- </ui-select-match>
- <ui-select-choices repeat="item in role | filter: $select.role">
- <div ng-bind-html="item.role | highlight: $select.role"></div>
- </ui-select-choices>
- </ui-select> -->
- <input type="text" class="pull-left" style="width: 130px;
- height: 34px;
- border-radius: 2px;text-align: center;border: 0px;" ng-model="upRole" disabled>
- <!-- <span class="input-group-btn pull-right">
- <button ng-click="choosUser.role = undefined" class="btn btn-default">
- <span class="glyphicon glyphicon-trash"></span>
- </button>
- </span> -->
- </div>
- </div>
- <div class=" input-group" style="margin:30px 0 ;">
- <div class="control-label pull-left margin-top-5 margin-right-5">
- <label class="demoincident">工作组</label>:</div>
- <div class="pull-right">
- <ui-select class="pull-left" style="width:130px" ng-model="choosUser.group" theme="bootstrap" ng-change="onChangeGroup($select.selected)">
- <ui-select-match placeholder="">
- {{$select.selected.groupName}}
- </ui-select-match>
- <ui-select-choices repeat="item in group | filter: $select.groupName">
- <div ng-bind-html="item.groupName | highlight: $select.groupName"></div>
- </ui-select-choices>
- </ui-select>
- <!-- <span class="input-group-btn pull-right">
- <button ng-click="choosUser.group = undefined" class="btn btn-default">
- <span class="glyphicon glyphicon-trash"></span>
- </button>
- </span> -->
- </div>
- </div>
- <div class=" input-group" style="margin:30px 0 ;">
- <div class="control-label pull-left margin-top-5 margin-right-5">
- <label class="demoincident">处理人</label>:</div>
- <div class="pull-right">
- <ui-select class="pull-left" style="width:130px" ng-model="choosUser.handlerUser" theme="bootstrap" ng-change="onChangeRotateUser($select.selected)">
- <ui-select-match placeholder="">
- {{$select.selected.name}}
- </ui-select-match>
- <ui-select-choices repeat="item in user | filter: $select.name">
- <div ng-bind-html="item.name | highlight: $select.name"></div>
- </ui-select-choices>
- </ui-select>
- <!-- <span class="input-group-btn pull-right">
- <button ng-click="choosUser.rotateUser = undefined" class="btn btn-default">
- <span class="glyphicon glyphicon-trash"></span>
- </button>
- </span> -->
- </div>
- </div>
- </div>
- </div>
- <div class="modal-footer modelfooter-hint pointfont">
- <div class="hintfooterleft pull-left" ng-click="ok()" translate="modal.button.OK ">OK</div>
- <div class="hintfooterright pull-right" ng-click="cancel() " translate="modal.button.CANCEL ">Cancel</div>
- </div>
|