123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <html>
- <head>
- <title>通知管理</title>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <meta name="decorator" content="ani"/>
- <%@ include file="/webpage/include/bootstraptable.jsp"%>
- <%@include file="/webpage/include/treeview.jsp" %>
- <%@include file="oaNotifyList.js" %>
- </head>
- <body>
- <div class="wrapper wrapper-content">
- <div class="panel panel-primary">
- <div class="panel-heading">
- <h3 class="panel-title">通知管理列表</h3>
- </div>
- <div class="panel-body">
- <!-- 搜索 -->
- <div id="search-collapse" class="collapse">
- <div class="accordion-inner">
- <form:form id="searchForm" modelAttribute="oaNotify" class="form form-horizontal well clearfix">
- <div class="col-xs-12 col-sm-6 col-md-4">
- <label class="label-item single-overflow pull-left" title="标题:">标题:</label>
- <form:input path="title" htmlEscape="false" maxlength="200" class=" form-control input-sm"/>
- </div>
- <div class="col-xs-12 col-sm-6 col-md-4">
- <label class="label-item single-overflow pull-left" title="类型:">类型:</label>
- <form:select path="type" class="form-control m-b">
- <form:option value="" label=""/>
- <form:options items="${fns:getDictList('oa_notify_type')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
- </form:select>
- </div>
- <div class="col-xs-12 col-sm-6 col-md-4">
- <div style="margin-top:26px">
- <a id="search" class="btn btn-primary btn-rounded btn-bordered btn-sm"><i class="fa fa-search"></i> 查询</a>
- <a id="reset" class="btn btn-primary btn-rounded btn-bordered btn-sm" ><i class="fa fa-refresh"></i> 重置</a>
- </div>
- </div>
- </form:form>
- </div>
- </div>
- <c:if test="${!isSelf}">
- <!-- 工具栏 -->
- <div id="toolbar">
- <shiro:hasPermission name="oa:oaNotify:add">
- <a id="add" class="btn btn-primary" href="${ctx}/oa/oaNotify/form" title="通知"><i class="glyphicon glyphicon-plus"></i> 新建</a>
- </shiro:hasPermission>
- <shiro:hasPermission name="oa:oaNotify:edit">
- <button id="edit" class="btn btn-success" disabled onclick="edit()">
- <i class="glyphicon glyphicon-edit"></i> 修改
- </button>
- </shiro:hasPermission>
- <shiro:hasPermission name="oa:oaNotify:del">
- <button id="remove" class="btn btn-danger" disabled onclick="deleteAll()">
- <i class="glyphicon glyphicon-remove"></i> 删除
- </button>
- </shiro:hasPermission>
- <shiro:hasPermission name="oa:oaNotify:import">
- <button id="btnImport" class="btn btn-info"><i class="fa fa-folder-open-o"></i> 导入</button>
- <div id="importBox" class="hide">
- <form id="importForm" action="${ctx}/oa/oaNotify/import" method="post" enctype="multipart/form-data"
- style="padding-left:20px;text-align:center;" ><br/>
- <input id="uploadFile" name="file" type="file" style="width:330px"/>导入文件不能超过5M,仅允许导入“xls”或“xlsx”格式文件!<br/>
-
-
- </form>
- </div>
- </shiro:hasPermission>
- </div>
- </c:if>
- <!-- 表格 -->
- <table id="table" data-toolbar="#toolbar"></table>
-
- <c:if test="${!isSelf}">
- <!-- context menu -->
- <ul id="context-menu" class="dropdown-menu">
- <shiro:hasPermission name="oa:oaNotify:edit">
- <li data-item="edit"><a>编辑</a></li>
- </shiro:hasPermission>
- <shiro:hasPermission name="oa:oaNotify:del">
- <li data-item="delete"><a>删除</a></li>
- </shiro:hasPermission>
- <li data-item="action1"><a>取消</a></li>
- </ul>
- </c:if>
- </div>
- </div>
- </div>
- </body>
- </html>
|