87 lines
2.7 KiB
HTML
87 lines
2.7 KiB
HTML
|
|
<div>
|
|
查询条件:
|
|
<select ng-model="mysel" ng-options="a.name for a in Myjson">
|
|
<option value="">选择</option>
|
|
</select>
|
|
<span colspan="6">
|
|
搜索: <input type="text" ng-model="mytxt" placeholder="项目标题查询" />
|
|
<input type="button" class="btn btn-success" name="搜索" value="搜索" ng-click="btn()" />
|
|
<input type="button" class="btn btn-success" ui-sref="app.ShuRu" value="新增" />
|
|
</span>
|
|
<span>
|
|
{{myttt}}
|
|
</span>
|
|
|
|
|
|
|
|
<table st-table="dispData" st-safe-src="myData" class="table table-hover bag" 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>
|
|
<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.YPBH}}</td>
|
|
<td>{{item.CYDBH}}</td>
|
|
<td>{{item.YPMC}}</td>
|
|
<td>{{item.YPSSJHSJ}}</td>
|
|
<td>{{item.YPLX}}</td>
|
|
<td>{{item.SCRQ}}</td>
|
|
<td>{{item.YPLB}}</td>
|
|
<td>{{item.YPXZ}}</td>
|
|
<td>{{item.BZXS}}</td>
|
|
<td>{{item.YPGG}}</td>
|
|
<td>{{item.CYSL}}</td>
|
|
<td>{{item.HG}}</td>
|
|
<td>{{item.XM}}</td>
|
|
|
|
<td>
|
|
<i class="fa icon-cloud-download YD-marg4 YD-col2"></i>
|
|
<i class="fa icon-printer YD-marg4 YD-col9"></i>
|
|
<div class="YD-disp">
|
|
<button ng-click="open(item.YPBH)" class="btn btn-success YD-padd21"><i class=" icon-magnifier YD-marg4" />查看</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="6" class="text-center">
|
|
<div st-pagination="" st-items-by-page="8" st-displayed-pages="15"></div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|