123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <style type="text/css">
- .inspectReportCtrl .incidentsearch {
- width: 30% !important;
- margin-right: 16px;
- }
- .inspectReportCtrl .iptSize {
- width: 60% !important;
- height: 28px !important;
- }
- .inspectReportCtrl .tree-control .tree-input {
- min-height: 28px !important;
- }
- .inspectReportCtrl .searchBtnBox > .btn {
- margin: 0 8px 10px 0;
- }
- .inspectReportCtrl .inspectMask {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- margin: auto;
- background-color: rgba(0, 0, 0, 0.5);
- z-index: 99999;
- }
- .inspectReportCtrl .inspectMask .inspectMain {
- width: 400px;
- height: 200px;
- background-color: #fff;
- margin: 100px auto 0;
- border-radius: 5px;
- padding: 16px;
- }
- .inspectReportCtrl .inspectMask .inspectMain .inspectMain_header {
- height: 30px;
- line-height: 30px;
- text-align: center;
- font-weight: bold;
- }
- .inspectReportCtrl .inspectMask .inspectMain .inspectMain_footer {
- margin-top: 8px;
- text-align: center;
- }
- .inspectReportCtrl .xj_img {
- width: 50px;
- height: 100px;
- object-fit: cover;
- margin: 0 2px;
- cursor: pointer;
- }
- .inspectReportCtrl .gridInspectReport {
- height: 100vh;
- }
- </style>
- <div ng-controller="inspectReportCtrl" class="inspectReportCtrl">
- <div class="inspectMask" ng-if="isMask">
- <div class="inspectMain">
- <div class="inspectMain_header">请选择计划主题和批次号</div>
- <div>
- 计划主题<span style="color: red" class="ng-scope">*</span>:
- <ui-select ng-model="queryList.title" ng-change="changeTitle(e)">
- <ui-select-match placeholder="请选择计划主题">
- <span ng-bind="$select.selected.title"> </span>
- </ui-select-match>
- <ui-select-choices
- repeat="item in (titles | filter:$select.search) track by item.id"
- >
- <span ng-bind="item.title"> </span>
- </ui-select-choices>
- </ui-select>
- </div>
- <div>
- 批次号<span style="color: red" class="ng-scope">*</span>:
- <ui-select ng-model="queryList.batchNo">
- <ui-select-match placeholder="请选择批次号">
- <span ng-bind="$select.selected.name"> </span>
- </ui-select-match>
- <ui-select-choices
- repeat="item in (batchNos | filter:$select.search) track by item.id"
- >
- <span ng-bind="item.name"> </span>
- </ui-select-choices>
- </ui-select>
- </div>
- <div class="inspectMain_footer">
- <div class="btn btn_search" ng-click="onClick()"><span>确定</span></div>
- </div>
- </div>
- </div>
- <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 class="schuback" id="searchid">
- <div class="row" style="padding-right: 0px !important">
- <div class="col-xs-12">
- <div class="col-xs-11" style="padding-right: 0px !important"></div>
- <div class="col-xs-1">
- <div>
- <div class="pull-left margin-top-10 searchBtnBox">
- <div class="btn btn_clean" ng-click="print()">打印</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="tableList" ui-i18n="{{lang}}">
- <div class=" ">
- <div
- id="grid1 "
- ui-grid="gridOptions "
- external-scopes="$scope "
- ui-grid-resize-columns
- ui-grid-selection
- ui-grid-auto-resize
- class="grid gridInspectReport"
- ></div>
- </div>
- </div>
- </div>
|