|
@@ -1,94 +1,113 @@
|
|
|
+<%@ page import="com.thinkgem.jeesite.common.config.Global" %>
|
|
|
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
|
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
|
|
|
+<% request.setAttribute("caimeiManager", Global.getConfig("caimei.manager"));%>
|
|
|
<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>
|
|
|
+ <title>临时中转页面</title>
|
|
|
+ <meta name="decorator" content="default"/>
|
|
|
+ <style type="text/css">
|
|
|
+ p{text-align: center;font-size:16px;line-height:1.5;}
|
|
|
+ p a{font-size: 18px;}
|
|
|
+ </style>
|
|
|
</head>
|
|
|
<body>
|
|
|
- <ul class="nav nav-tabs">
|
|
|
- <li class="active"><a href="${ctx}/permission/receiptUserPermission/list?userType=1">收款通知权限</a></li>
|
|
|
- <li><a href="${ctx}/permission/receiptUserPermission/list?userType=2">收款确认权限</a></li>
|
|
|
- <li><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="1"/>
|
|
|
- <div class="ul-form">
|
|
|
- <label>收款通知人:</label>
|
|
|
- <form:input path="name" htmlEscape="false" maxlength="20" 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=1">添加</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>
|
|
|
+<p>收款人权限【已重构至新后台】</p>
|
|
|
+<p><a href="${caimeiManager}/#/finance/receipts/users" target="_blank">点击访问新后台:收款人权限</a></p>
|
|
|
+<p>(账号:本系统登录名,初始密码:caimei123,若登录后无权限访问,请联系系统管理员分配角色及添加权限)</p>
|
|
|
</body>
|
|
|
-</html>
|
|
|
+</html>
|
|
|
+<%--<%@ 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}/permission/receiptUserPermission/list?userType=1">收款通知权限</a></li>--%>
|
|
|
+<%-- <li><a href="${ctx}/permission/receiptUserPermission/list?userType=2">收款确认权限</a></li>--%>
|
|
|
+<%-- <li><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="1"/>--%>
|
|
|
+<%-- <div class="ul-form">--%>
|
|
|
+<%-- <label>收款通知人:</label>--%>
|
|
|
+<%-- <form:input path="name" htmlEscape="false" maxlength="20" 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=1">添加</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>--%>
|