1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
- <html>
- <head>
- <title>正品联盟申请加入管理</title>
- <meta name="decorator" content="default"/>
- <style type="text/css">
- .table th{text-align: center;}
- .table td{text-align: center;}
- </style>
- <script type="text/javascript">
- $(document).ready(function() {
-
- });
- function page(n,s){
- $("#pageNo").val(n);
- $("#pageSize").val(s);
- $("#searchForm").submit();
- return false;
- }
- </script>
- </head>
- <body>
- <ul class="nav nav-tabs">
- <li class="active"><a href="${ctx}/zplm/zplmApply/">正品联盟申请加入列表</a></li>
- <%--<shiro:hasPermission name="zplm:zplmApply:edit"><li><a href="${ctx}/zplm/zplmApply/form">正品联盟申请加入添加</a></li></shiro:hasPermission>--%>
- </ul>
- <form:form id="searchForm" modelAttribute="zplmApply" action="${ctx}/zplm/zplmApply/" method="post" class="breadcrumb form-search">
- <input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
- <input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
- <div class="ul-form">
- <label>id:</label>
- <form:input path="id" htmlEscape="false" maxlength="11" class="input-medium"/>
- <label>机构名称:</label>
- <form:input path="institutionName" htmlEscape="false" maxlength="11" class="input-medium"/>
- <label>申请时间:</label>
- <form:input path="startTime" type="text" maxlength="20" class="input-mini Wdate" value="${startTime}"
- onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
- -
- <form:input path="endTime" type="text" maxlength="20" class="input-mini Wdate" value="${endTime}"
- onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
- <input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>
- <div class="clearfix"></div>
- </div>
- </form:form>
- <sys:message content="${message}"/>
- <table id="contentTable" class="table table-striped table-bordered table-condensed">
- <thead>
- <tr>
- <th>序号</th>
- <th>机构名称</th>
- <th>申请人姓名</th>
- <th>联系方式</th>
- <th>邮箱</th>
- <th>申请时间</th>
- <%--<shiro:hasPermission name="zplm:zplmApply:edit"><th>操作</th></shiro:hasPermission>--%>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${page.list}" var="zplmApply">
- <tr>
- <td>${zplmApply.id}</td>
- <td>${zplmApply.institutionName}</td>
- <td>${zplmApply.applicantName}</td>
- <td>${zplmApply.contactType}</td>
- <td>${zplmApply.email}</td>
- <td>${zplmApply.applicantTime}</td>
- <%--<shiro:hasPermission name="zplm:zplmApply:edit"><td>--%>
- <%--<a href="${ctx}/zplm/zplmApply/form?id=${zplmApply.id}">编辑</a>--%>
- <%--<shiro:hasPermission name="zplm:zplmApply:delete">--%>
- <%--<a href="${ctx}/zplm/zplmApply/delete?id=${zplmApply.id}" onclick="return confirmx('确认要删除该正品联盟申请加入吗?', this.href)">删除</a>--%>
- <%--</shiro:hasPermission>--%>
- <%--</td></shiro:hasPermission>--%>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- <div class="pagination">${page}</div>
- </body>
- </html>
|