123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <style type="text/css">
- .incidentsearch {
- width: 30% !important;
- margin-right: 16px;
- }
- .iptSize {
- width: 60% !important;
- height: 28px !important;
- }
- .tree-control .tree-input {
- min-height: 28px !important;
- }
- .clean {
- border: 1px rgb(0, 83, 149) solid !important;
- color: rgb(0, 83, 149) !important;
- background-color: rgb(230, 238, 244) !important;
- height: 28px !important;
- width: 80px;
- }
- .searchBtnBox {
- padding-top: 10px;
- display: flex;
- justify-content: flex-end;
- }
- .searchBtnBox > .btn {
- margin: 0 8px 10px 0;
- }
- </style>
- <section id="page-title">
- <div class="row">
- <div class="col-sm-8">
- <h1 class="mainTitle">
- 院区设置<i
- tooltip="新增或编辑院区。"
- tooltip-placement="right"
- class="fa ti-help-alt margin-left-10 fontcolor-five pointfont"
- ></i>
- </h1>
- </div>
- </div>
- </section>
- <div ng-controller="hospitalCtrl">
- <div class="schuback" id="searchid">
- <div class="row" style="padding-right: 0px !important">
- <form class="col-xs-12 form-inline">
- <div class="col-xs-10">
- <!-- <div class="form-group incidentsearch">
- <div>
- <div class="control-label pull-left" style="padding-top:4px">部门:</div>
- <input class="form-control pull-right inputcolor iptSize"
- style="border-color: #dedede;color: #93989e;" type="text"
- ng-model="fileData.department.dept" placeholder="" />
- </div>
- </div>
- <div class="form-group incidentsearch">
- <div>
- <div class="control-label pull-left" style="padding-top:4px">部门电话:</div>
- <input class="form-control pull-right inputcolor iptSize"
- style="border-color: #dedede;color: #93989e;" type="text"
- ng-model="fileData.department.phone" placeholder="" />
- </div>
- </div>
- <div class="form-group incidentsearch ">
- <div class=" pull-left" style="padding-top:4px">单位:</div>
- <ui-select class="pull-right iptSize" ng-model="fileData.department.parent" theme="bootstrap">
- <ui-select-match placeholder="">
- {{$select.selected.dept}}
- </ui-select-match>
- <ui-select-choices repeat="item in deptData">
- <div ng-bind-html="item.dept | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- <div class="form-group incidentsearch">
- <div>
- <div class="control-label pull-left" style="padding-top:4px">区域:</div>
- <ui-select class="pull-right iptSize" ng-model="fileData.department.area" ng-change="changeArea($select.selected)" theme="bootstrap">
- <ui-select-match placeholder="">
- {{$select.selected.area}}
- </ui-select-match>
- <ui-select-choices repeat="item in areaData">
- <div ng-bind-html="item.area | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- </div>
- <div class="form-group incidentsearch">
- <div>
- <div class="control-label pull-left" style="padding-top:4px">地点:</div>
- <ui-select class="pull-right iptSize" ng-model="fileData.department.place" theme="bootstrap">
- <ui-select-match placeholder="">
- {{$select.selected.place}}
- </ui-select-match>
- <ui-select-choices repeat="item in placeData">
- <div ng-bind-html="item.place | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- </div> -->
- </div>
- <div class="col-xs-2 searchBtnBox">
- <!-- <a ladda="ldloading.expand_right" class="btn btn-reashbutton reashbutton" data-style="expand-right" ng-click="refreshData('expand-right')"><span translate="list.button.REFRESH">Refresh Data</span></a> -->
- <div type="button" class="btn btn_search" ng-click="searchData()">
- 搜索
- </div>
- <!-- <div class="btn btn_clean" ng-click="clean()">重置</div> -->
- <div
- type="button"
- class="btn btn_search"
- ng-click="addData()"
- ng-show="xinzeng"
- >
- <span translate="list.button.CREATE">Add Data</span>
- </div>
- <!-- <div
- type="button"
- class="btn btn_remove"
- ng-class="isMousedown?'btn_removeMousedown':''"
- ng-mousedown="changeRemoveClass()"
- ng-click="removeData()"
- ng-show="shanchu"
- ng-disabled="selected.items.length==0"
- >
- <span translate="list.button.REMOVE">Remove First Row</span>
- </div> -->
- </div>
- </form>
- </div>
- </div>
- <div class="tableList" ui-i18n="{{lang}}">
- <div
- id="grid1"
- ui-grid="gridOptions"
- ui-grid-pagination
- external-scopes="$scope"
- ui-grid-resize-columns
- ui-grid-selection
- class="grid"
- ></div>
- </div>
- </div>
|