inspectReport.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <style type="text/css">
  2. .inspectReportCtrl .incidentsearch {
  3. width: 30% !important;
  4. margin-right: 16px;
  5. }
  6. .inspectReportCtrl .iptSize {
  7. width: 60% !important;
  8. height: 28px !important;
  9. }
  10. .inspectReportCtrl .tree-control .tree-input {
  11. min-height: 28px !important;
  12. }
  13. .inspectReportCtrl .searchBtnBox > .btn {
  14. margin: 0 8px 10px 0;
  15. }
  16. .inspectReportCtrl .inspectMask {
  17. position: absolute;
  18. left: 0;
  19. top: 0;
  20. right: 0;
  21. bottom: 0;
  22. margin: auto;
  23. background-color: rgba(0, 0, 0, 0.5);
  24. z-index: 99999;
  25. }
  26. .inspectReportCtrl .inspectMask .inspectMain {
  27. width: 400px;
  28. height: 200px;
  29. background-color: #fff;
  30. margin: 100px auto 0;
  31. border-radius: 5px;
  32. padding: 16px;
  33. }
  34. .inspectReportCtrl .inspectMask .inspectMain .inspectMain_header {
  35. height: 30px;
  36. line-height: 30px;
  37. text-align: center;
  38. font-weight: bold;
  39. }
  40. .inspectReportCtrl .inspectMask .inspectMain .inspectMain_footer {
  41. margin-top: 8px;
  42. text-align: center;
  43. }
  44. .inspectReportCtrl .xj_img {
  45. width: 50px;
  46. height: 100px;
  47. object-fit: cover;
  48. margin: 0 2px;
  49. cursor: pointer;
  50. }
  51. .inspectReportCtrl .gridInspectReport {
  52. height: 100vh;
  53. }
  54. </style>
  55. <div ng-controller="inspectReportCtrl" class="inspectReportCtrl">
  56. <div class="inspectMask" ng-if="isMask">
  57. <div class="inspectMain">
  58. <div class="inspectMain_header">请选择计划主题和批次号</div>
  59. <div>
  60. 计划主题<span style="color: red" class="ng-scope">*</span>:
  61. <ui-select ng-model="queryList.title" ng-change="changeTitle(e)">
  62. <ui-select-match placeholder="请选择计划主题">
  63. <span ng-bind="$select.selected.title"> </span>
  64. </ui-select-match>
  65. <ui-select-choices
  66. repeat="item in (titles | filter:$select.search) track by item.id"
  67. >
  68. <span ng-bind="item.title"> </span>
  69. </ui-select-choices>
  70. </ui-select>
  71. </div>
  72. <div>
  73. 批次号<span style="color: red" class="ng-scope">*</span>:
  74. <ui-select ng-model="queryList.batchNo">
  75. <ui-select-match placeholder="请选择批次号">
  76. <span ng-bind="$select.selected.name"> </span>
  77. </ui-select-match>
  78. <ui-select-choices
  79. repeat="item in (batchNos | filter:$select.search) track by item.id"
  80. >
  81. <span ng-bind="item.name"> </span>
  82. </ui-select-choices>
  83. </ui-select>
  84. </div>
  85. <div class="inspectMain_footer">
  86. <div class="btn btn_search" ng-click="onClick()"><span>确定</span></div>
  87. </div>
  88. </div>
  89. </div>
  90. <section id="page-title">
  91. <div class="row">
  92. <div class="col-sm-8">
  93. <h1 class="mainTitle">
  94. 巡检报告<i
  95. tooltip="巡检报告列表"
  96. tooltip-placement="right"
  97. class="fa ti-help-alt margin-left-10 fontcolor-five pointfont"
  98. ></i>
  99. </h1>
  100. </div>
  101. </div>
  102. </section>
  103. <div class="schuback" id="searchid">
  104. <div class="row" style="padding-right: 0px !important">
  105. <div class="col-xs-12">
  106. <div class="col-xs-11" style="padding-right: 0px !important"></div>
  107. <div class="col-xs-1">
  108. <div>
  109. <div class="pull-left margin-top-10 searchBtnBox">
  110. <div class="btn btn_clean" ng-click="print()">打印</div>
  111. </div>
  112. </div>
  113. </div>
  114. </div>
  115. </div>
  116. </div>
  117. <div class="tableList" ui-i18n="{{lang}}">
  118. <div class=" ">
  119. <div
  120. id="grid1 "
  121. ui-grid="gridOptions "
  122. external-scopes="$scope "
  123. ui-grid-resize-columns
  124. ui-grid-selection
  125. ui-grid-auto-resize
  126. class="grid gridInspectReport"
  127. ></div>
  128. </div>
  129. </div>
  130. </div>