setDuty.tpl.html 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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;width: 300px;">
  9. <div class=" input-group" style="margin:8px 0 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">
  13. <ui-select class="pull-left" style="width:230px" ng-model="assign.branch" theme="bootstrap" ng-change="changeBranch()">
  14. <ui-select-match placeholder="">
  15. {{$select.selected.hosName}}
  16. </ui-select-match>
  17. <ui-select-choices repeat="item in hospitalList | filter:{$:$select.search}">
  18. <div ng-bind-html="item.hosName | highlight: $select.search"></div>
  19. </ui-select-choices>
  20. </ui-select>
  21. </div>
  22. </div>
  23. </div>
  24. <div class="form-group incidentsearch" style="margin:0 auto;width: 300px;">
  25. <div class=" input-group" style="margin:8px 0 0;">
  26. <div class="control-label pull-left margin-top-5 margin-right-5">
  27. <label class="demoincident">责任科室</label>:</div>
  28. <div class="pull-right">
  29. <ui-select class="pull-left" style="width:230px" ng-model="assign.duty" theme="bootstrap">
  30. <ui-select-match placeholder="">
  31. {{$select.selected.dept}}
  32. </ui-select-match>
  33. <ui-select-choices repeat="item in dutyDeptList | filter:{$:$select.search}" refresh="changeBranch($select.search)">
  34. <div ng-bind-html="item.dept | highlight: $select.search"></div>
  35. </ui-select-choices>
  36. </ui-select>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. <div class="modal-footer modelfooter-hint" style="cursor: pointer;">
  42. <div class="hintfooterleft pull-left" ng-click="ok()" style="cursor: pointer;">确定</div>
  43. <div class="hintfooterright pull-right" ng-click="cancel()" style="cursor: pointer;">取消</div>
  44. </div>