88 lines
3.7 KiB
HTML
88 lines
3.7 KiB
HTML
<style>
|
|
.Mybtn {
|
|
height: 30px;
|
|
border-radius: 5px;
|
|
line-height: 0px;
|
|
}
|
|
|
|
.click {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.click button {
|
|
width: 60px;
|
|
height: 30px;
|
|
border-radius: 5px;
|
|
margin-right: 10px;
|
|
color: black;
|
|
line-height: 0px;
|
|
}
|
|
|
|
#myTable td{
|
|
border:1px solid #CDEDF5;
|
|
}
|
|
</style>
|
|
|
|
<div id="drag_modal">
|
|
<div class="modal-Top">
|
|
<button class="btn btn-success form-control disabled" style="text-align:center">检测标准管理</button>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<p text-align="center">新增检测标准 <strong>注:</strong>带有<span>**</span>必须填写</p>
|
|
<div>
|
|
<label>标准类型:</label>
|
|
<select class="form-control input-sm inline m-r" ng-model="EditData.bzlb" >
|
|
<option ng-repeat="a in Myjson ">{{a}}</option>
|
|
</select>
|
|
<br><br>
|
|
<label for="BZBH">标准编号:</label>
|
|
<input id="BZBH" type="text" ng-model="EditData.bh" class="form-control input-sm inline m-r" /><span>**</span><br><br>
|
|
<label for="BZMC">标准名称:</label>
|
|
<input id="BZMC" type="text" ng-model="EditData.bzmc" class="form-control input-sm inline m-r" /><span>**</span><br><br>
|
|
<label for="Fday">发布时间:</label>
|
|
<input id="Fday" type="date" ng-model="EditData.faburiqi" class="form-control input-sm inline m-r" /><span>**</span><br><br>
|
|
<label for="Sday">实施时间:</label>
|
|
<input id="Sday" type="date" ng-model="EditData.shishiriqi" class="form-control input-sm inline m-r" /><span>**</span><br><br>
|
|
<!-- <label for="beizhu">备 注:</label>-->
|
|
<!-- <input id="beizhu" type="text" ng-model="BZ" class="form-control input-sm inline m-r" /><br><br>-->
|
|
<label for="state">状 态:</label>
|
|
<input id="state" class="form-control input-sm inline m-r" ng-model="EditData.zhuangtai" disabled style="color:gray" /><br><br>
|
|
|
|
|
|
</div>
|
|
<!-- <table st-table="dispData" st-safe-src="myData" class="table table-bordered table-hover text-center " id="myTable" style="width:69%;margin-top:15px;">-->
|
|
<!-- <thead>-->
|
|
<!-- <tr>-->
|
|
<!-- <td>编号</td>-->
|
|
<!-- <td>检测项目</td>-->
|
|
<!-- <td>操作</td>-->
|
|
<!-- </tr>-->
|
|
<!-- </thead>-->
|
|
<!-- <tbody>-->
|
|
<!-- <tr ng-repeat="item in dispData">-->
|
|
<!-- <td>{{item.type}}</td>-->
|
|
<!-- <td>{{item.name}}</td>-->
|
|
<!-- <td ng-click="deleteData(item.name)">删除</td>-->
|
|
<!-- </tr>-->
|
|
<!-- </tbody>-->
|
|
<!-- <tfoot>-->
|
|
<!-- <tr>-->
|
|
<!-- <td colspan="5" class="text-center">-->
|
|
<!-- <div st-pagination="" st-items-by-page="10" st-displayed-pages="10"></div>-->
|
|
<!-- </td>-->
|
|
<!-- </tr>-->
|
|
<!-- </tfoot>-->
|
|
<!-- </table>-->
|
|
|
|
<!-- <button class="btn btn-default Mybtn" ng-click="select()" style="margin-left:15%;margin-top:15px;">添加检验项目</button>-->
|
|
</div>
|
|
<div class="modal-footer">
|
|
|
|
<button class="btn btn-info btn-sm" ng-show="addjcbz" ng-click="save()">保存</button>
|
|
<button class="btn btn-info btn-sm" ng-show="updatejcbz" ng-click="update()">修改</button>
|
|
<button class="btn btn-info btn-sm" ng-click="return()">返回</button>
|
|
</div>
|
|
</div>
|
|
|