zplmApplyList.jsp 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>正品联盟申请加入管理</title>
  6. <meta name="decorator" content="default"/>
  7. <style type="text/css">
  8. .table th{text-align: center;}
  9. .table td{text-align: center;}
  10. </style>
  11. <script type="text/javascript">
  12. $(document).ready(function() {
  13. });
  14. function page(n,s){
  15. $("#pageNo").val(n);
  16. $("#pageSize").val(s);
  17. $("#searchForm").submit();
  18. return false;
  19. }
  20. </script>
  21. </head>
  22. <body>
  23. <ul class="nav nav-tabs">
  24. <li class="active"><a href="${ctx}/zplm/zplmApply/">正品联盟申请加入列表</a></li>
  25. <%--<shiro:hasPermission name="zplm:zplmApply:edit"><li><a href="${ctx}/zplm/zplmApply/form">正品联盟申请加入添加</a></li></shiro:hasPermission>--%>
  26. </ul>
  27. <form:form id="searchForm" modelAttribute="zplmApply" action="${ctx}/zplm/zplmApply/" method="post" class="breadcrumb form-search">
  28. <input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
  29. <input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
  30. <div class="ul-form">
  31. <label>id:</label>
  32. <form:input path="id" htmlEscape="false" maxlength="11" class="input-medium"/>
  33. <label>机构名称:</label>
  34. <form:input path="institutionName" htmlEscape="false" maxlength="11" class="input-medium"/>
  35. <label>申请时间:</label>
  36. <form:input path="startTime" type="text" maxlength="20" class="input-mini Wdate" value="${startTime}"
  37. onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
  38. -
  39. <form:input path="endTime" type="text" maxlength="20" class="input-mini Wdate" value="${endTime}"
  40. onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
  41. &nbsp;&nbsp;<input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>
  42. <div class="clearfix"></div>
  43. </div>
  44. </form:form>
  45. <sys:message content="${message}"/>
  46. <table id="contentTable" class="table table-striped table-bordered table-condensed">
  47. <thead>
  48. <tr>
  49. <th>序号</th>
  50. <th>机构名称</th>
  51. <th>申请人姓名</th>
  52. <th>联系方式</th>
  53. <th>邮箱</th>
  54. <th>申请时间</th>
  55. <%--<shiro:hasPermission name="zplm:zplmApply:edit"><th>操作</th></shiro:hasPermission>--%>
  56. </tr>
  57. </thead>
  58. <tbody>
  59. <c:forEach items="${page.list}" var="zplmApply">
  60. <tr>
  61. <td>${zplmApply.id}</td>
  62. <td>${zplmApply.institutionName}</td>
  63. <td>${zplmApply.applicantName}</td>
  64. <td>${zplmApply.contactType}</td>
  65. <td>${zplmApply.email}</td>
  66. <td>${zplmApply.applicantTime}</td>
  67. <%--<shiro:hasPermission name="zplm:zplmApply:edit"><td>--%>
  68. <%--<a href="${ctx}/zplm/zplmApply/form?id=${zplmApply.id}">编辑</a>--%>
  69. <%--<shiro:hasPermission name="zplm:zplmApply:delete">--%>
  70. <%--<a href="${ctx}/zplm/zplmApply/delete?id=${zplmApply.id}" onclick="return confirmx('确认要删除该正品联盟申请加入吗?', this.href)">删除</a>--%>
  71. <%--</shiro:hasPermission>--%>
  72. <%--</td></shiro:hasPermission>--%>
  73. </tr>
  74. </c:forEach>
  75. </tbody>
  76. </table>
  77. <div class="pagination">${page}</div>
  78. </body>
  79. </html>