103 lines
3.3 KiB
HTML
103 lines
3.3 KiB
HTML
|
|
<style>
|
|
.modalTop select, .modalTop input {
|
|
width:15%;
|
|
|
|
}
|
|
|
|
|
|
.modal-body button{
|
|
width:80px;
|
|
height:30px;
|
|
border-radius:5px;
|
|
margin:10px 20px;
|
|
line-height:11px;
|
|
}
|
|
</style>
|
|
|
|
<div >
|
|
|
|
<div class="modal-Top">
|
|
<button class="btn btn-success form-control disabled" style="text-align:center">评价方法</button>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<div class="modalTop">
|
|
|
|
<label>字段:</label>
|
|
<select ng-model="mys" ng-options="a.name for a in tj" >
|
|
<option value=" ">选择...</option>
|
|
</select>
|
|
<label>条件:</label>
|
|
<select ng-model="myTJ" ng-options="a.name for a in Ptj">
|
|
<option value="">选择</option>
|
|
</select>
|
|
<label>查询:</label>
|
|
<input ng-model="myt" class="form-control input-sm w-sm inline m-r " />
|
|
<button class="btn btn-default" ng-click="wocao()">搜索</button>
|
|
<span>{{mytext}}</span>
|
|
|
|
</div>
|
|
<table st-table="dispData" st-safe-src="myData2" class="table table-hover bag table-bordered" id="myTable">
|
|
<thead>
|
|
<tr class="text-xs">
|
|
<th>选择</th>
|
|
<th>检测项目</th>
|
|
<th>检测标准编号</th>
|
|
<th>检测标准名称</th>
|
|
<th>方法序号</th>
|
|
<th>方法名称</th>
|
|
<th>检测仪器</th>
|
|
<th>检测定性限</th>
|
|
<th>检测定性限单位</th>
|
|
<th>检测定量限</th>
|
|
<th>检测定量限单位 </th>
|
|
<th>检测结果</th>
|
|
<th>样品综合判定</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="item in dispData">
|
|
<td>
|
|
<div class="checkbox">
|
|
<label class="i-checks">
|
|
<input type="checkbox" value="">
|
|
<i></i>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
<td>{{item.JCXM}}</td>
|
|
<td>{{item.JCBZBH}}</td>
|
|
<td>{{item.JCBZMC}}</td>
|
|
<td>{{item.FFXH}}</td>
|
|
<td>{{item.FCMC}}</td>
|
|
<td>{{item.JYYQ}}</td>
|
|
<td>{{item.JCDXX}}</td>
|
|
<td>{{item.JCDXXDW}}</td>
|
|
<td>{{item.JCDLX}}</td>
|
|
<td>{{item.JCDLXDW}}</td>
|
|
<td>{{item.JCJG}}</td>
|
|
<td>{{item.YPZHPD}}</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="13" class="text-center">
|
|
<div st-pagination="" st-items-by-page="8" st-displayed-pages="15"></div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
<div class="modal-footer">
|
|
<button class="btn btn-success" ng-click="Ok()">确定</button>
|
|
<button class="btn btn-danger" ng-click="Cancel()">取消</button>
|
|
</div>
|
|
</div>
|