123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <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" style="text-align: left;">
- <div class="row padding-sm no-padding-vr bordered no-border-hr ">
- <div class="col-md-12">
- <div class="panel panel-white">
- <div class="panel-body">
- <div ng-if="intervalTime.flag">
- <span>轮播间隔时间(秒)</span>
- <ui-select ng-model="intervalTime.rotationInterval" theme="bootstrap" ng-required="true" reset-search-input="false">
- <ui-select-match placeholder="请选择">
- {{$select.selected}}
- </ui-select-match>
- <ui-select-choices repeat="option in intervalTime.rotationIntervals">
- <div ng-bind-html="option | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- <div ng-if="intervalTime.flag">
- <span>自动刷新间隔时间(秒)</span>
- <ui-select ng-model="intervalTime.logTimeConst" theme="bootstrap" ng-required="true" reset-search-input="false">
- <ui-select-match placeholder="请选择">
- {{$select.selected}}
- </ui-select-match>
- <ui-select-choices repeat="option in intervalTime.logTimeConsts">
- <div ng-bind-html="option | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- <!-- 责任科室 start -->
- <div class="tab-mainDiv-body-lineDiv-100">
- <div class="tab-mainDiv-body-lable">
- 院区和责任科室:
- </div>
- <div ng-if="branchObj.id">
- <div>
- <label style="margin-right: 16px;cursor: pointer;">
- <input ng-disabled="!branchObj.flag" type="radio" ng-model="f.uuid" ng-value="branchObj.uuid" name="uuid">{{branchObj.hosName}}
- </label>
- </div>
- <div style="display: flex;flex-wrap: wrap;text-indent: 2em;" ng-if="hospitalAndDutyDept[branchObj.id].length">
- <label ng-repeat="b in hospitalAndDutyDept[branchObj.id]" style="margin-right: 16px;cursor: pointer;">
- <input ng-disabled="!b.flag" type="radio" ng-model="f.uuid" ng-value="b.uuid" name="uuid">{{b.branchName}}-{{b.dept}}
- </label>
- </div>
- <div style="padding-left:2em;" ng-repeat="a in branchObj.children">
- <div>
- <label style="margin-right: 16px;cursor: pointer;">
- <input ng-disabled="!a.flag" type="radio" ng-model="f.uuid" ng-value="a.uuid" name="uuid">{{a.hosName}}
- </label>
- </div>
- <div style="display: flex;flex-wrap: wrap;text-indent: 2em;" ng-if="hospitalAndDutyDept[a.id].length">
- <label ng-repeat="b in hospitalAndDutyDept[a.id]" style="margin-right: 16px;cursor: pointer;">
- <input ng-disabled="!b.flag" type="radio" ng-model="f.uuid" ng-value="b.uuid" name="uuid">{{b.branchName}}-{{b.dept}}
- </label>
- </div>
- </div>
- </div>
- <div style="overflow: hidden;margin-top: 15px;" ng-if="branchObj.id">
- <div class="panel-footer text-center" style="padding-bottom: 0;">
- <button class="btn btn-primary" ng-click="saveDept();" type="submit">
- 确定
- </button>
- <button class="btn btn-primary btn-o" ng-click="cancel()" translate="modal.button.CANCEL">Cancel</button>
- </div>
- </div>
- <div ng-if="!branchObj.id">加载中...</div>
- </div>
- <!-- 责任科室 end -->
- </div>
- </div>
- </div>
- </div>
- </div>
|