12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <div class="modal-header">
- <div class="modal-title fontcolor-two fontsizes-14">{{title}}<button type="button" class="close pull-right" ng-click="cancel()">×</button></div>
- </div>
- <div ui-i18n="{{lang}}" class="modal-body margin-left-15 margin-right-15 margin-bottom-15 margin-top-15">
- <!--<div ui-grid="gridOptions" ui-grid-pagination ui-grid-selection external-scopes="$scope" class="grid"></div>-->
- <!-- <div id="grid1" ui-grid="gridOptions" ui-grid-pagination external-scopes="$scope" ui-grid-cellNav ui-grid-resize-columns ui-grid-pinning ui-grid-selection ui-grid-move-columns ui-grid-exporter class="grid"></div> -->
- <div class="c_item clearfix" style="width: 100%;text-align: left;margin-bottom: 8px;" ng-if="isAssign">
- <label class="fl" style="margin-right: 8px; cursor: pointer">
- <input type="radio" name="type" ng-value="1" ng-model="searchModel.type" ng-change="changeType()" />科室内转派
- </label>
- <label class="fl" style="cursor: pointer">
- <input type="radio" name="type" ng-value="2" ng-model="searchModel.type" ng-change="changeType()" />跨科室转派
- </label>
- <div class="c_item clearfix fl" style="display: flex;align-items:center;margin-bottom: 8px;margin-left: 16px;" ng-if="searchModel.type == 2">
- <label>院区:</label>
- <ui-select
- class="c_item_value branch"
- style="width: 160px;"
- ng-model="searchModel.branch"
- ng-change="changeBranch()"
- theme="bootstrap"
- ng-required="true"
- reset-search-input="false"
- >
- <ui-select-match placeholder="请选择院区">
- <span ng-bind="$select.selected.hosName"></span>
- </ui-select-match>
- <ui-select-choices
- repeat="item in hospitalList| filter:{$:$select.search}"
- >
- <div
- ng-bind-html="item.hosName | highlight: $select.search"
- ></div>
- </ui-select-choices>
- </ui-select>
- </div>
- <div class="c_item clearfix fl" style="display: flex;align-items:center;margin-bottom: 8px;margin-left: 16px;" ng-if="searchModel.type == 2">
- <label>责任科室:</label>
- <ui-select
- class="c_item_value"
- style="width: 160px;"
- ng-model="searchModel.department"
- ng-change="changeDutyDept()"
- theme="bootstrap"
- ng-required="true"
- reset-search-input="false"
- >
- <ui-select-match placeholder="请选择责任科室">
- <span ng-bind="$select.selected.dept"></span>
- </ui-select-match>
- <ui-select-choices
- repeat="item in dutyDeptList"
- refresh="changeBranch($select.search)"
- >
- <div ng-bind-html="item.dept | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- </div>
- <div id="grid1" ui-grid="gridOptions" ui-grid-pagination external-scopes="$scope" ui-grid-cellNav ui-grid-resize-columns ui-grid-pinning ui-grid-selection ui-grid-move-columns ui-grid-exporter class="grid"></div>
- <!-- <div id="grid1 " ui-grid="gridOptions " ui-grid-pagination external-scopes="$scope " ui-grid-cellNav ui-grid-resize-columns ui-grid-auto-resize class="grid "></div> -->
- </div>
- <div class="modal-footer">
- <button class="btn btn-primary" ng-click="ok()">确定</button>
- <button class="btn btn-primary btn-o" ng-click="cancel()" translate="modal.button.CANCEL">Cancel</button>
- </div>
|