response/target/classes/public/app/model/modalPJBZ_Open.html
2025-06-27 10:04:22 +08:00

82 lines
2.9 KiB
HTML

<style>
.modal-body .SortTop button {
margin:10px 10px;
}
#myTable td{
border:1px solid #CDEDF5;
}
</style>
<div>
<div class="modal-Top">
<button class="btn btn-success form-control disabled" style="text-align:center">查看评价指标页面</button>
</div>
<div class="modal-body" style="padding-left:15px">
<div class="SortTop text-center">
<label for="JCXM">检测项目</label>
<select id="JCXM" ng-change="XMchange()" class="form-control inline m-r w-sm input-sm" style="width:20%" ng-model="jcxm" ng-options="a.name for a in XMOption">
<option value="">请选择...</option>
</select>
<button class="btn btn-default">查询</button>
<button class="btn btn-default" ng-show="IsChange" ng-click="XZAdd()">添加</button>
<button class="btn btn-default" ng-show="IsChange" ng-click="CDelete()">删除</button>
</div>
<table st-table="dispData" st-safe-src="XMTable" class="table table-hover table-bordered text-center" id="myTable" style="width:100%">
<thead>
<tr>
<td style="width:10%">选择</td>
<td style="width:10%">编号</td>
<td style="width:15%">检测项目</td>
<td style="width:20%">食品种类</td>
<td style="width:15%">检测标准值</td>
<td style="width:10%">值类型</td>
<td style="width:10%">单位</td>
<td ng-show="IsChange">操作</td>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in dispData">
<td>
<div class="checkbox">
<label class="i-checks">
<input type="checkbox" value="" ng-checked="isChecked(item)" ng-click="updateSelection($event,item)">
<i></i>
</label>
</div>
</td>
<td> {{$index+1}}</td>
<td> {{item.name}}</td>
<td> {{item.SPLB}}</td>
<td> {{item.XL}}</td>
<td>{{item.XLBZ}}</td>
<td> {{item.XLDW}}</td>
<td ng-show="IsChange">
<a ng-click="Change(item.cid)">修改</a>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="8" class="text-center">
<div st-pagination="" st-items-by-page="10" st-displayed-pages="15"></div>
</td>
</tr>
</tfoot>
</table>
</div>
<div class="modal-footer">
<button class="btn btn-info btn-md" ng-click="Cancel()">返回</button>
</div>
</div>