hospital.html 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <style type="text/css">
  2. .incidentsearch {
  3. width: 30% !important;
  4. margin-right: 16px;
  5. }
  6. .iptSize {
  7. width: 60% !important;
  8. height: 28px !important;
  9. }
  10. .tree-control .tree-input {
  11. min-height: 28px !important;
  12. }
  13. .clean {
  14. border: 1px rgb(0, 83, 149) solid !important;
  15. color: rgb(0, 83, 149) !important;
  16. background-color: rgb(230, 238, 244) !important;
  17. height: 28px !important;
  18. width: 80px;
  19. }
  20. .searchBtnBox {
  21. padding-top: 10px;
  22. display: flex;
  23. justify-content: flex-end;
  24. }
  25. .searchBtnBox > .btn {
  26. margin: 0 8px 10px 0;
  27. }
  28. </style>
  29. <section id="page-title">
  30. <div class="row">
  31. <div class="col-sm-8">
  32. <h1 class="mainTitle">
  33. 校区设置<i
  34. tooltip="新增或编辑校区。"
  35. tooltip-placement="right"
  36. class="fa ti-help-alt margin-left-10 fontcolor-five pointfont"
  37. ></i>
  38. </h1>
  39. </div>
  40. </div>
  41. </section>
  42. <div ng-controller="hospitalCtrl">
  43. <div class="schuback" id="searchid">
  44. <div class="row" style="padding-right: 0px !important">
  45. <form class="col-xs-12 form-inline">
  46. <div class="col-xs-10">
  47. <!-- <div class="form-group incidentsearch">
  48. <div>
  49. <div class="control-label pull-left" style="padding-top:4px">部门:</div>
  50. <input class="form-control pull-right inputcolor iptSize"
  51. style="border-color: #dedede;color: #93989e;" type="text"
  52. ng-model="fileData.department.dept" placeholder="" />
  53. </div>
  54. </div>
  55. <div class="form-group incidentsearch">
  56. <div>
  57. <div class="control-label pull-left" style="padding-top:4px">部门电话:</div>
  58. <input class="form-control pull-right inputcolor iptSize"
  59. style="border-color: #dedede;color: #93989e;" type="text"
  60. ng-model="fileData.department.phone" placeholder="" />
  61. </div>
  62. </div>
  63. <div class="form-group incidentsearch ">
  64. <div class=" pull-left" style="padding-top:4px">单位:</div>
  65. <ui-select class="pull-right iptSize" ng-model="fileData.department.parent" theme="bootstrap">
  66. <ui-select-match placeholder="">
  67. {{$select.selected.dept}}
  68. </ui-select-match>
  69. <ui-select-choices repeat="item in deptData">
  70. <div ng-bind-html="item.dept | highlight: $select.search"></div>
  71. </ui-select-choices>
  72. </ui-select>
  73. </div>
  74. <div class="form-group incidentsearch">
  75. <div>
  76. <div class="control-label pull-left" style="padding-top:4px">区域:</div>
  77. <ui-select class="pull-right iptSize" ng-model="fileData.department.area" ng-change="changeArea($select.selected)" theme="bootstrap">
  78. <ui-select-match placeholder="">
  79. {{$select.selected.area}}
  80. </ui-select-match>
  81. <ui-select-choices repeat="item in areaData">
  82. <div ng-bind-html="item.area | highlight: $select.search"></div>
  83. </ui-select-choices>
  84. </ui-select>
  85. </div>
  86. </div>
  87. <div class="form-group incidentsearch">
  88. <div>
  89. <div class="control-label pull-left" style="padding-top:4px">地点:</div>
  90. <ui-select class="pull-right iptSize" ng-model="fileData.department.place" theme="bootstrap">
  91. <ui-select-match placeholder="">
  92. {{$select.selected.place}}
  93. </ui-select-match>
  94. <ui-select-choices repeat="item in placeData">
  95. <div ng-bind-html="item.place | highlight: $select.search"></div>
  96. </ui-select-choices>
  97. </ui-select>
  98. </div>
  99. </div> -->
  100. </div>
  101. <div class="col-xs-2 searchBtnBox">
  102. <!-- <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> -->
  103. <div type="button" class="btn btn_search" ng-click="searchData()">
  104. 搜索
  105. </div>
  106. <!-- <div class="btn btn_clean" ng-click="clean()">重置</div> -->
  107. <div
  108. type="button"
  109. class="btn btn_search"
  110. ng-click="addData()"
  111. ng-show="xinzeng"
  112. >
  113. <span translate="list.button.CREATE">Add Data</span>
  114. </div>
  115. <!-- <div
  116. type="button"
  117. class="btn btn_remove"
  118. ng-class="isMousedown?'btn_removeMousedown':''"
  119. ng-mousedown="changeRemoveClass()"
  120. ng-click="removeData()"
  121. ng-show="shanchu"
  122. ng-disabled="selected.items.length==0"
  123. >
  124. <span translate="list.button.REMOVE">Remove First Row</span>
  125. </div> -->
  126. </div>
  127. </form>
  128. </div>
  129. </div>
  130. <div class="tableList" ui-i18n="{{lang}}">
  131. <div
  132. id="grid1"
  133. ui-grid="gridOptions"
  134. ui-grid-pagination
  135. external-scopes="$scope"
  136. ui-grid-resize-columns
  137. ui-grid-selection
  138. class="grid"
  139. ></div>
  140. </div>
  141. </div>