12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <%@ 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><a href="${ctx}/permission/receiptUserPermission/list?userType=1">收款通知权限</a></li>
- <li><a href="${ctx}/permission/receiptUserPermission/list?userType=2">收款确认权限</a></li>
- <li class="active"><a href="${ctx}/permission/receiptUserPermission/list?userType=3">收款审核权限</a></li>
- <li><a href="${ctx}/permission/receiptUserPermission/list?userType=4">返佣管理权限</a></li>
- <li><a href="${ctx}/permission/receiptUserPermission/list?userType=5">供应商退款管理权限</a></li>
- </ul>
- <form:form id="searchForm" modelAttribute="receiptUserPermission" action="${ctx}/permission/receiptUserPermission/" 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}"/>
- <input id="userType" name="userType" type="hidden" value="3"/>
- <div class="ul-form">
- <label>收款审核人:</label>
- <form:input path="name" htmlEscape="false" maxlength="50" class="input-medium"/>
- <label>手机号码:</label>
- <form:input path="mobile" htmlEscape="false" maxlength="20" class="input-medium"/>
- <label>微信openID:</label>
- <form:input path="openid" htmlEscape="false" maxlength="32" class="input-medium"/>
- <input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>
- <shiro:hasPermission name="permission:receiptUserPermission:edit">
- <a class="btn btn-primary" href="${ctx}/permission/receiptUserPermission/form?userType=3">添加</a></li>
- </shiro:hasPermission>
- <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>微信openID</th>
- <th>身份</th>
- <shiro:hasPermission name="permission:receiptUserPermission:edit"><th>操作</th></shiro:hasPermission>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${page.list}" var="receiptUserPermission">
- <tr>
- <td><a href="${ctx}/permission/receiptUserPermission/form?id=${receiptUserPermission.id}">
- ${receiptUserPermission.name}
- </a></td>
- <td>${receiptUserPermission.mobile}</td>
- <td>${receiptUserPermission.openid}</td>
- <td>
- <c:if test="${receiptUserPermission.userIdentity eq 1}">
- 协销人员
- </c:if>
- <c:if test="${receiptUserPermission.userIdentity eq 2}">
- 客服
- </c:if>
- <c:if test="${receiptUserPermission.userIdentity eq 3}">
- 财务
- </c:if>
- <c:if test="${receiptUserPermission.userIdentity eq 4}">
- 超级管理员
- </c:if>
- </td>
- <shiro:hasPermission name="permission:receiptUserPermission:edit"><td>
- <a href="${ctx}/permission/receiptUserPermission/form?id=${receiptUserPermission.id}">编辑</a>
- <shiro:hasPermission name="permission:receiptUserPermission:delete">
- <a href="${ctx}/permission/receiptUserPermission/delete?id=${receiptUserPermission.id}" onclick="return confirmx('确认要删除吗?', this.href)">删除</a>
- </shiro:hasPermission>
- </td></shiro:hasPermission>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- <div class="pagination">${page}</div>
- </body>
- </html>
|