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

98 lines
4.2 KiB
HTML

<style>
</style>
<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="wherestr.bzlb" ng-options="a.name for a in Myjson">
<option value="">选择...</option>
</select>
<label for="BZBH"> 标准编号:</label>
<input type="text" id="BZBH" ng-model="wherestr.bh" placeholder="" class="form-control input-sm w-sm inline m-r search-box" style="width:10%"/>
<label for="GJZ"> 标准名称:</label>
<input type="text" id="GJZ" ng-model="wherestr.bzmc" placeholder="" class="form-control input-sm w-sm inline m-r search-box" style="width:10%" />
<label for="state">状态:</label>
<select id="state" ng-model="wherestr.zhuangtai" ng-options="a.name for a in Myjson1">
<option value="">选择..</option>
</select>
<button class="btn btn-default" ng-click="Cha()">查询</button>
<span>共有标准:{{myttt}} 个</span>
</div>
<div class="row">
<table st-table="displayed" st-pipe="getService" class="table table-hover text-center table-bordered " id="myTable">
<caption>
<div class="AllBtn" style="text-align:center">
<button class="btn btn-default" ng-click="add()">新增</button>
<!--<button class="btn btn-default" ng-click="SP()">审批</button>
<button class="btn btn-default" ng-click="QY()">启用</button>-->
<button class="btn btn-default" ng-click="PZ()">批准</button>
<button class="btn btn-default" ng-click="ZF()">作废</button>
<button class="btn btn-default" ng-click="delete()">删除</button>
</div>
</caption>
<thead>
<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="bzlb">标准类别</th>
<th style="width:15%" st-ratio="10" st-sort="bh">标准编号</th>
<th style="width:20%" st-ratio="10" st-sort="bzmc">标准名称</th>
<th style="width:7%" st-ratio="10" st-sort="faburiqi">发布日期</th>
<th style="width:8%" st-ratio="10" st-sort="shishiriqi">实施日期</th>
<th style="width:10%" st-ratio="10" st-sort="zhuangtai">状态</th>
<th style="width:10%" st-ratio="10" st-sort="lururen">录入人</th>
<!-- <th style="width:15%">操作</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.bzlb}}</td>
<td st-ratio="10">{{item.bh}}</td>
<td st-ratio="10">{{item.bzmc}}</td>
<td st-ratio="10">{{item.faburiqi}}</td>
<td st-ratio="10">{{item.shishiriqi}}</td>
<td st-ratio="10">{{item.zhuangtai}}</td>
<td st-ratio="10">{{item.lururen}}</td>
<!-- <td>-->
<!-- <a ng-click="add(item.id)">评价标准</a>-->
<!--&lt;!&ndash; <a ng-click="open1(item.id)">评价指标</a>&ndash;&gt;-->
<!-- </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>