65 lines
1.8 KiB
HTML
65 lines
1.8 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" name="搜索" value="搜索" ng-click="btn()" />
|
|
</span>
|
|
<span>
|
|
{{myDW}}
|
|
|
|
</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>
|
|
</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.JGBH}}</td>
|
|
<td>{{item.JCJGMC}}</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 class="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>
|
|
|
|
|
|
|
|
|
|
|