93 lines
4.2 KiB
Plaintext
93 lines
4.2 KiB
Plaintext
|
|
<%@ page contentType="text/html;charset=UTF-8" %>
|
||
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||
|
|
<%@ taglib uri="http://shiro.apache.org/tags" prefix="shiro" %>
|
||
|
|
<!DOCTYPE html >
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<%@include file="../baseset.jsp" %>
|
||
|
|
<%@include file="../systemset.jsp" %>
|
||
|
|
<style type="text/css">
|
||
|
|
.widget-toolbar a{
|
||
|
|
vertical-align:middle;
|
||
|
|
}
|
||
|
|
.ui-state-focus{
|
||
|
|
display: none !important;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="page-content">
|
||
|
|
<div class="row-fluid">
|
||
|
|
<div class="col-xs-12">
|
||
|
|
<form id="baseForm" class="form-inline" method="POST" onsubmit="return false;">
|
||
|
|
<div class="widget-header widget-header-large" style="padding:5px 10px;" >
|
||
|
|
<div class="widget-main">
|
||
|
|
  <input type="text" name="keyWord" placeholder="这里输入关键词" class="input-large">
|
||
|
|
<button id='searchBtn' class="btn btn-warning btn-sm" title="过滤" type="button" onclick="getbaseList(1)"><i class="icon-search bigger-110 icon-only"></i></button>
|
||
|
|
<button class="btn btn-success btn-sm" id="addBtn" title="新增" type="button">新增</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="widget-toolbar customBtn">
|
||
|
|
|
||
|
|
<shiro:hasPermission name="innerUnit:add">
|
||
|
|
<a title="新增" onclick="add()" class="lrspace3" ><i class='icon-plus-sign color bigger-180'></i></a>
|
||
|
|
</shiro:hasPermission>
|
||
|
|
<shiro:hasPermission name="innerUnit:view">
|
||
|
|
<a title="查看" onclick="view()" class="lrspace3" ><i class='icon-info-sign color bigger-180'></i></a>
|
||
|
|
</shiro:hasPermission>
|
||
|
|
<shiro:hasPermission name="innerUnit:edit">
|
||
|
|
<a title="修改" onclick="edit()" class="lrspace3" ><i class='icon-edit-sign color bigger-180'></i></a>
|
||
|
|
</shiro:hasPermission>
|
||
|
|
<shiro:hasPermission name="innerUnit:del">
|
||
|
|
<a title="删除" onclick="del()" class="lrspace3" ><i class='icon-remove-sign color color-red bigger-180'></i></a>
|
||
|
|
</shiro:hasPermission>
|
||
|
|
|
||
|
|
<a title="打印" id="printBtns" onclick="print()" class="lrspace3" ><i class='icon-print color-green bigger-180'></i></a>
|
||
|
|
<a title="刷新" id="searchBtn" onclick="getbaseList()" class="lrspace3" ><i class='icon-refresh bigger-180 orange'></i></a>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
<input type='hidden' class='pageNum' name='pageNum' value='1'/>
|
||
|
|
<input type='hidden' class='pageSize' name='pageSize' value='10'/>
|
||
|
|
</form>
|
||
|
|
<table id="baseTable" class="table table-striped table-bordered table-hover" >
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th style="width:3%" class="center">
|
||
|
|
<label><input type="checkbox" class="ace" ><span class="lbl"></span></label>
|
||
|
|
</th>
|
||
|
|
<th style="width:5%" class="center hidden-480">序号</th>
|
||
|
|
<th style="width:10%" class="center">登录名</th>
|
||
|
|
<th style="width:18%" class="center hidden-480">内部单位</th>
|
||
|
|
<th style="width:12%" class="center ">电话号码</th>
|
||
|
|
<th style="width:14%" class="center hidden-480"><i class="icon-envelope-alt bigger-110 hidden-480"></i>电子邮箱</th>
|
||
|
|
<th style="width:8%" class="center hidden-480">账号状态</th>
|
||
|
|
<th style="width:12%" class="center">操作</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody></tbody>
|
||
|
|
</table>
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-sm-4">
|
||
|
|
<div class="dataTables_info customBtn" >
|
||
|
|
<!--  <a href="#" title="增加" id="addBtn" class="lrspace3" ><i class='icon-plus-sign color bigger-220'></i></a> -->
|
||
|
|
<!--  <a href="#" title="批量删除" id="delBatchBtn" class="lrspace3" ><i class='icon-trash color-red bigger-220'></i></a> -->
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="col-sm-8">
|
||
|
|
<!--设置分页位置-->
|
||
|
|
<div id="pageing" class="dataTables_paginate paging_bootstrap">
|
||
|
|
<ul class="pagination"></ul>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<!-- #addorUpdateFrom -->
|
||
|
|
<%@include file="brotherManagementForm.jsp" %>
|
||
|
|
<!-- #dialog-confirm -->
|
||
|
|
<%@include file="../dialog.jsp" %>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<script src="${bonuspath}/static/js/sys/brotherManagement.js?v=1"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|