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

98 lines
3.4 KiB
HTML

<style>
.modal-body {
width: 80%;
margin: 30px auto;
}
.modal-body input {
width: 70%;
background-color: #E7E7FE;
color: #0000DE;
margin-bottom: 10px;
}
.modal-body {
padding-left: 30px;
}
</style>
<div>
<div class="modal-Top">
<button class="btn btn-success form-control disabled">标题</button>
</div>
<div class="modal-body">
<p>
<label for="JGBH">用户信息:</label>
<input type="text" id="JGBH" class="form-control input-sm inline " ng-model="Cusernname" />
</p>
<p>
<label for="DWMC">登录名称:</label>
<input type="text" id="DWMC" class="form-control input-sm inline" ng-model="Cuser" />
</p>
<p>
<label for="DWMC">登录密码:</label>
<input type="password" id="DWMC" class="form-control input-sm inline" ng-model="Cpwd" />
</p>
<p>
<label for="DWMC">权限等级:</label>
<select id="DWMC" class="form-control input-sm inline" ng-model="QXName" >
<option>一级权限</option>
<option>二级权限</option>
<option>三级权限</option>
<option>检测机构</option>
<option>检测机构管理员</option>
</select>
</p>
<p style="overflow:hidden;">
<div style="float:left;width:30%;" ng-repeat="item in myshuju">
<span style="width:60%;text-align:right;">{{item.name}}</span>
<label class="i-checks" style="">
<input type="radio" name="iid" ng-click="myselid(item.id)">
<i></i>
</label>
</div>
</p>
<p style="clear:both"></p>
<table st-table="dispData" st-safe-src="myData" class="table table-hover table-bordered 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>
<div class="checkbox">
<label class="i-checks">
<input type="checkbox" value="" ng-checked="isChecked(item.cid)" ng-click="updateSelection($event,item.cid)">
<i></i>
</label>
</div>
</td>
<td>{{$index+1}}</td>
<td>{{item.name}}</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="10" class="text-center">
<div st-pagination="" st-items-by-page="10" st-displayed-pages="10"></div>
</td>
</tr>
</tfoot>
</table>
</div>
<div class="modal-footer">
<button class="btn btn-success" ng-show="showupdate" ng-click="cupdate()">修改</button>
<button class="btn btn-success" ng-show="showok" ng-click="ok()">确定</button>
<button class="btn btn-success" ng-click="Cancel()">取消</button>
</div>
</div>