2025-06-27 10:04:22 +08:00

97 lines
3.5 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">
<span>查询条件:</span>
<select ng-model="mysel" ng-options="a.name for a in Myjson" style="margin-right:10px;">
<option value="">选择</option>
</select>
<span>
搜索: <input type="text" ng-model="mytxt" class=" form-control input-sm w-sm inline m-r search-box " />
<button class="btn btn-default" ng-click="Cha()">查询</button>
<span>
共有数据:{{myttt}} 条
</span>
<button class="btn btn-default" ng-click="open(0)">新增</button>
<button class="btn btn-default" ng-click="delete()">删除</button>
</span>
</div>
<div class="row">
<table st-table="displayed" st-pipe="getService" class="table table-hover table-bordered text-center" id="myTable">
<thead>
<tr>
<th>
全选
<st-checkbox-all select-list="selectList" current-ids="ids" check-init="checkinit" ></st-checkbox-all>
</th>
<th st-ratio="10" st-sort="CYDBH">采样点编号</th>
<th st-ratio="10" st-sort="DWMC">单位名称</th>
<th st-ratio="10" st-sort="DZ">地址</th>
<th st-ratio="10" st-sort="NHJMC">环节</th>
<th st-ratio="10" st-sort="NHJYLMC">环节亚类</th>
<th st-ratio="10" st-sort="DICT">区县</th>
<th st-ratio="10" st-sort="JYFW">生产或经营范围</th>
<th st-ratio="10" st-sort="LXR">联系人</th>
<th st-ratio="10" st-sort="LXDH">联系电话</th>
<th st-ratio="10" st-sort="BZ">备注</th>
<th>操作</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.CYDBH}}</td>
<td st-ratio="10">{{item.DWMC}}</td>
<td st-ratio="10">{{item.DZ}}</td>
<td st-ratio="10">{{item.NHJMC}}</td>
<td st-ratio="10">{{item.NHJYLMC}}</td>
<td st-ratio="10">{{item.DICT}}</td>
<td st-ratio="10">{{item.JYFW}}</td>
<td st-ratio="10">{{item.LXR}}</td>
<td st-ratio="10">{{item.LXDH}}</td>
<td st-ratio="10">{{item.BZ}}</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>
</div>