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

81 lines
3.1 KiB
HTML

<style>
.modal-body select {
width:9%;
}
</style>
<div class="modal-Top">
<button class="btn btn-success form-control disabled">样品信息</button>
</div>
<div class="modal-body">
<div class="row">
<table st-table="displayed" st-pipe="getService" class="table table-hover table-bordered " id="myTable">
<thead>
<tr>
<!--<th>
<div class="checkbox">
<label class="i-checks">
<input type="checkbox" value="">
<i></i>
</label>
全选
</div>
</th>-->
<th>
全选
<st-checkbox-all select-list="selectList" current-ids="ids" check-init="checkinit"></st-checkbox-all>
</th>
<th st-ratio="10" st-sort="RWBH">任务编号</th>
<th st-ratio="10" st-sort="CYDBH">采样单编号</th>
<th st-ratio="10" st-sort="YPMC">样品名称</th>
<th st-ratio="10" st-sort="YPLY">样品来源</th>
<th st-ratio="10" st-sort="JCDW">检测机构</th>
<th st-ratio="10" st-sort="SCJGGJRQ">采样日期</th>
<th st-ratio="10" st-sort="YPJBZT">样品状态</th>
<th st-ratio="10" st-sort="YPPJXX">样品评价</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in displayed">
<td st-ratio="{{tiao}}">
<st-checkbox select-list="selectList" id="{{item.id}}"></st-checkbox>
<!--<span>{{item.id}}</span>-->
</td>
<td st-ratio="10"> {{item.RWBH}}</td>
<td st-ratio="10">{{item.CYDBH}}</td>
<td st-ratio="10">{{item.YPMC}}</td>
<td st-ratio="10">{{item.YPLY}}</td>
<td st-ratio="10">{{item.JCDW}} </td>
<td st-ratio="10">{{item.CYSJ | date:"yyyy/MM/dd"}}</td>
<td st-ratio="10">{{item.YPJBZT}}</td>
<td st-ratio="10">{{item.YPPJXX}}</td>
<td>
<a ng-click="XiuGai(item.id)">查看/修改</a>
</td>
</tr>
</tbody>
<st-loading is-show="isShow" tip-show="正在加载请稍后!!"></st-loading>
<tfoot>
<tr>
<td colspan="10" class="text-center">
<div st-items-by-page="curpageNumber" st-pagination="" st-template="app/pagination.custom.html"></div>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
<div class="modal-footer">
<!--<button class="btn btn-info btn-sm" ng-click="save()">保存</button>-->
<button class="btn btn-info btn-sm" ng-click="return()">返回</button>
</div>