85 lines
3.0 KiB
HTML
85 lines
3.0 KiB
HTML
<style>
|
|
</style>
|
|
|
|
<div>
|
|
<div class="container">
|
|
<div class="row Top">
|
|
<i></i>
|
|
<h2>机构单位管理</h2>
|
|
<i style="float:right"></i>
|
|
</div>
|
|
|
|
<div class="row text-center SortTop">
|
|
<span>查询条件:</span>
|
|
<!-- <select ng-model="mysel" ng-options="a.name for a in Myjson">-->
|
|
<!-- <option value="">选择</option>-->
|
|
<!-- </select>-->
|
|
<span>检测机构名称</span>
|
|
<input type="text" ng-model="wherestr.jcjgmc" class="form-control input-sm w-sm inline m-r search-box" />
|
|
|
|
|
|
<button class="btn btn-default" ng-click="Cha()">查询</button>
|
|
|
|
<span>
|
|
检测机构一共: <strong>{{myttt}}</strong> 家
|
|
|
|
</span>
|
|
<button class="btn btn-default" ng-click="open(0)">新增</button>
|
|
<button class="btn btn-default" ng-click="delete()">删除</button>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<table st-table="displayed" st-pipe="getService" class="table table-bordered table-hover text-center" id="myTable">
|
|
<thead class="text-center">
|
|
<tr>
|
|
<th>
|
|
全选
|
|
<st-checkbox-all select-list="selectList" current-ids="ids" check-init="checkinit"></st-checkbox-all>
|
|
</th>
|
|
<th style="width:10%" st-ratio="10" st-sort="JGBH">机构编号</th>
|
|
<th style="width:15%" st-ratio="10" st-sort="JCJGMC">单位名称</th>
|
|
<!-- <th style="width:15%" st-ratio="10" st-sort="lxr">联系人</th>-->
|
|
<!-- <th style="width:15%" st-ratio="10" st-sort="lxdh">联系电话</th>-->
|
|
<!-- <th style="width:15%" st-ratio="10" st-sort="yx">邮箱</th>-->
|
|
<!--<th style="width:15%" st-ratio="10" st-sort="YHZH">银行账号</th>-->
|
|
<th style="width:10%" >操作</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="item in displayed">
|
|
<td>
|
|
<st-checkbox select-list="selectList" id="{{item.ID}}" ng-click="dianji()"></st-checkbox>
|
|
<!--<span>{{item.id}}</span>-->
|
|
</td>
|
|
<td st-ratio="10">{{item.JGBH}}</td>
|
|
<td st-ratio="10">{{item.JCJGMC}}</td>
|
|
<!-- <td st-ratio="10">{{item.lxr}}</td>-->
|
|
<!-- <td st-ratio="10">{{item.lxdh}}</td>-->
|
|
<!-- <td st-ratio="10">{{item.yx}}</td>-->
|
|
<!--<td st-ratio="10">{item.YHZH}}</td>-->
|
|
<td>
|
|
<a ng-click="open(item.ID)">查看/修改</a>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody>
|
|
<st-loading is-show="isShow" tip-show="正在加载请稍后!!"></st-loading>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="15" class="text-center">
|
|
<div st-items-by-page="curpageNumber" st-pagination="" st-template="app/pagination.custom.html"></div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
|
|
|
|
</div>
|