59 lines
1.8 KiB
HTML
59 lines
1.8 KiB
HTML
<div class="container">
|
|
<div class="row Top">
|
|
<i></i>
|
|
<h2>样品编号管理</h2>
|
|
<i style="float:right"></i>
|
|
</div>
|
|
|
|
<div class="row text-center SortTop">
|
|
<label for="JLDW">样品编号:</label>
|
|
<input type="text" value=" " class="form-control input-sm w-sm inline m-r" />
|
|
|
|
<button class="btn btn-default">查询</button>
|
|
<button class="btn btn-default">新增</button>
|
|
<button class="btn btn-default">删除</button>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
<table st-table="dispData" st-safe-src="myData" class="table table-hover text-center " id="myTable">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:10%">选择</th>
|
|
<th style="width:25%"> 样品编号</th>
|
|
<th style="width:40%">备注</th>
|
|
<th style="width:25%">操作</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.YPBH}}</td>
|
|
<td>{{item.BZ}}</td>
|
|
|
|
<td>
|
|
<a>修改/</a><a>删除</a>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="4" class="text-center">
|
|
<div st-pagination="" st-items-by-page="8" st-displayed-pages="15"></div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div> |