12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <%@ 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}/user/cmGempreferral/">员工推荐列表</a></li>
- <shiro:hasPermission name="user:cmGempreferral:edit"><li><a href="${ctx}/user/cmGempreferral/form">员工推荐添加</a></li></shiro:hasPermission>
- </ul>
- <form:form id="searchForm" modelAttribute="cmGempreferral" action="${ctx}/user/cmGempreferral/" 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>序号:</label>
- <form:input path="gempreferralID" htmlEscape="false" maxlength="20" class="input-medium"/>
- <label>会所ID:</label>
- <form:input path="gclubID" htmlEscape="false" maxlength="11" class="input-medium"/>
- <label>状态:</label>
- <form:input path="status" htmlEscape="false" maxlength="50" class="input-medium"/>
- <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>
- <shiro:hasPermission name="user:cmGempreferral:edit"><th>操作</th></shiro:hasPermission>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${page.list}" var="cmGempreferral">
- <tr>
- <shiro:hasPermission name="user:cmGempreferral:edit"><td>
- <a href="${ctx}/user/cmGempreferral/form?id=${cmGempreferral.id}">编辑</a>
- <shiro:hasPermission name="user:cmGempreferral:delete">
- <a href="${ctx}/user/cmGempreferral/delete?id=${cmGempreferral.id}" onclick="return confirmx('确认要删除该员工推荐吗?', this.href)">删除</a>
- </shiro:hasPermission>
- </td></shiro:hasPermission>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- <div class="pagination">${page}</div>
- </body>
- </html>
|