80 lines
3.5 KiB
HTML
80 lines
3.5 KiB
HTML
|
|
<style>
|
|
#myTable td{
|
|
border:1px solid #CDEDF5;
|
|
}
|
|
|
|
</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="SortTop text-center" style="margin-bottom:10px;">
|
|
<label for="JCXM">检测项目:</label>
|
|
<select id="JCXM" ng-change="XMchange()" class="form-control input-sm w-sm inline m-r" style="width:15%;" ng-model="jcxm" ng-options="a.name for a in XMOption">
|
|
<option value="">全部</option>
|
|
</select>
|
|
<button class="btn btn-default" ng-show="IsChange" ng-click="FFAdd(0)">新增</button>
|
|
<button class="btn btn-default" >查询</button>
|
|
<button class="btn btn-default" ng-show="IsChange" ng-click="CDelete()">删除</button>
|
|
<!--<button class="btn btn-default" ng-show="threeBtn">修改</button>-->
|
|
</div>
|
|
|
|
<div>
|
|
<table st-table="dispData" st-safe-src="XMTable" class="table table-hover text-center" id="myTable">
|
|
<thead>
|
|
<tr>
|
|
<td style="width:9%">选择</td>
|
|
<td style="width:8%">编号</td>
|
|
<td style="width:9%">检验项目</td>
|
|
<td style="width:9%">方法序号</td>
|
|
<td style="width:9%">方法名称</td>
|
|
<td style="width:9%">定量限</td>
|
|
<td style="width:9%">定量限单位</td>
|
|
<td style="width:9%">定性限</td>
|
|
<td style="width:9%">定性限单位</td>
|
|
<td style="width:10%">备注</td>
|
|
<td style="width:10%" ng-show="IsChange">操作</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="item in dispData">
|
|
<td>
|
|
<div class="checkbox">
|
|
<label class="i-checks">
|
|
<input type="checkbox" value="" ng-checked="isChecked($index)" ng-click="updateSelection($event,$index)">
|
|
<i></i>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
<td>{{$index+1}}</td>
|
|
<td>{{item.name}}</td>
|
|
<td>{{item.ffxh}}</td>
|
|
<td>{{item.ffmc}}</td>
|
|
<td>{{item.ffdlx}}</td>
|
|
<td>{{item.ffdlxDW}}</td>
|
|
<td>{{item.ffjcx}}</td>
|
|
<td>{{item.ffjcxDW}}</td>
|
|
<td>{{item.BZ}}</td>
|
|
<td ng-show="IsChange">
|
|
<a ng-click="Change(item.cid)">修改</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="11" class="text-center">
|
|
<div st-pagination="" st-items-by-page="10" st-displayed-pages="15"></div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-info btn-md" ng-click="Cancel()">返回</button>
|
|
</div>
|
|
</div> |