receiptReviewPermissionList.jsp 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <%@ page import="com.thinkgem.jeesite.common.config.Global" %>
  2. <%@ page contentType="text/html;charset=UTF-8" %>
  3. <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
  4. <% request.setAttribute("caimeiManager", Global.getConfig("caimei.manager"));%>
  5. <html>
  6. <head>
  7. <title>临时中转页面</title>
  8. <meta name="decorator" content="default"/>
  9. <style type="text/css">
  10. p{text-align: center;font-size:16px;line-height:1.5;}
  11. p a{font-size: 18px;}
  12. </style>
  13. </head>
  14. <body>
  15. <p>收款人权限【已重构至新后台】</p>
  16. <p><a href="${caimeiManager}/#/finance/receipts/users" target="_blank">点击访问新后台:收款人权限</a></p>
  17. <p>(账号:本系统登录名,初始密码:caimei123,若登录后无权限访问,请联系系统管理员分配角色及添加权限)</p>
  18. </body>
  19. </html>
  20. <%--<%@ page contentType="text/html;charset=UTF-8" %>--%>
  21. <%--<%@ include file="/WEB-INF/views/include/taglib.jsp"%>--%>
  22. <%--<html>--%>
  23. <%--<head>--%>
  24. <%-- <title>收款审核权限表(审核人员使用)管理</title>--%>
  25. <%-- <meta name="decorator" content="default"/>--%>
  26. <%-- <style type="text/css">--%>
  27. <%-- .table th{text-align: center;}--%>
  28. <%-- .table td{text-align: center;}--%>
  29. <%-- </style>--%>
  30. <%-- <script type="text/javascript">--%>
  31. <%-- $(document).ready(function() {--%>
  32. <%-- --%>
  33. <%-- });--%>
  34. <%-- function page(n,s){--%>
  35. <%-- $("#pageNo").val(n);--%>
  36. <%-- $("#pageSize").val(s);--%>
  37. <%-- $("#searchForm").submit();--%>
  38. <%-- return false;--%>
  39. <%-- }--%>
  40. <%-- </script>--%>
  41. <%--</head>--%>
  42. <%--<body>--%>
  43. <%-- <ul class="nav nav-tabs">--%>
  44. <%-- <li><a href="${ctx}/permission/receiptUserPermission/list?userType=1">收款通知权限</a></li>--%>
  45. <%-- <li><a href="${ctx}/permission/receiptUserPermission/list?userType=2">收款确认权限</a></li>--%>
  46. <%-- <li class="active"><a href="${ctx}/permission/receiptUserPermission/list?userType=3">收款审核权限</a></li>--%>
  47. <%-- <li><a href="${ctx}/permission/receiptUserPermission/list?userType=4">返佣管理权限</a></li>--%>
  48. <%-- <li><a href="${ctx}/permission/receiptUserPermission/list?userType=5">供应商退款管理权限</a></li>--%>
  49. <%-- </ul>--%>
  50. <%-- <form:form id="searchForm" modelAttribute="receiptUserPermission" action="${ctx}/permission/receiptUserPermission/" method="post" class="breadcrumb form-search">--%>
  51. <%-- <input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>--%>
  52. <%-- <input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>--%>
  53. <%-- <input id="userType" name="userType" type="hidden" value="3"/>--%>
  54. <%-- <div class="ul-form">--%>
  55. <%-- <label>收款审核人:</label>--%>
  56. <%-- <form:input path="name" htmlEscape="false" maxlength="50" class="input-medium"/>--%>
  57. <%-- <label>手机号码:</label>--%>
  58. <%-- <form:input path="mobile" htmlEscape="false" maxlength="20" class="input-medium"/>--%>
  59. <%-- <label>微信openID:</label>--%>
  60. <%-- <form:input path="openid" htmlEscape="false" maxlength="32" class="input-medium"/>--%>
  61. <%-- &nbsp;&nbsp;<input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>--%>
  62. <%-- <shiro:hasPermission name="permission:receiptUserPermission:edit">--%>
  63. <%-- <a class="btn btn-primary" href="${ctx}/permission/receiptUserPermission/form?userType=3">添加</a></li>--%>
  64. <%-- </shiro:hasPermission>--%>
  65. <%-- <div class="clearfix"></div>--%>
  66. <%-- </div>--%>
  67. <%-- </form:form>--%>
  68. <%-- <sys:message content="${message}"/>--%>
  69. <%-- <table id="contentTable" class="table table-striped table-bordered table-condensed">--%>
  70. <%-- <thead>--%>
  71. <%-- <tr>--%>
  72. <%-- <th>收款审核人</th>--%>
  73. <%-- <th>手机</th>--%>
  74. <%-- <th>微信openID</th>--%>
  75. <%-- <th>身份</th>--%>
  76. <%-- <shiro:hasPermission name="permission:receiptUserPermission:edit"><th>操作</th></shiro:hasPermission>--%>
  77. <%-- </tr>--%>
  78. <%-- </thead>--%>
  79. <%-- <tbody>--%>
  80. <%-- <c:forEach items="${page.list}" var="receiptUserPermission">--%>
  81. <%-- <tr>--%>
  82. <%-- <td><a href="${ctx}/permission/receiptUserPermission/form?id=${receiptUserPermission.id}">--%>
  83. <%-- ${receiptUserPermission.name}--%>
  84. <%-- </a></td>--%>
  85. <%-- <td>${receiptUserPermission.mobile}</td>--%>
  86. <%-- <td>${receiptUserPermission.openid}</td>--%>
  87. <%-- <td>--%>
  88. <%-- <c:if test="${receiptUserPermission.userIdentity eq 1}">--%>
  89. <%-- 协销人员--%>
  90. <%-- </c:if>--%>
  91. <%-- <c:if test="${receiptUserPermission.userIdentity eq 2}">--%>
  92. <%-- 客服--%>
  93. <%-- </c:if>--%>
  94. <%-- <c:if test="${receiptUserPermission.userIdentity eq 3}">--%>
  95. <%-- 财务--%>
  96. <%-- </c:if>--%>
  97. <%-- <c:if test="${receiptUserPermission.userIdentity eq 4}">--%>
  98. <%-- 超级管理员--%>
  99. <%-- </c:if>--%>
  100. <%-- </td>--%>
  101. <%-- <shiro:hasPermission name="permission:receiptUserPermission:edit"><td>--%>
  102. <%-- <a href="${ctx}/permission/receiptUserPermission/form?id=${receiptUserPermission.id}">编辑</a>--%>
  103. <%-- <shiro:hasPermission name="permission:receiptUserPermission:delete">--%>
  104. <%-- <a href="${ctx}/permission/receiptUserPermission/delete?id=${receiptUserPermission.id}" onclick="return confirmx('确认要删除吗?', this.href)">删除</a>--%>
  105. <%-- </shiro:hasPermission>--%>
  106. <%-- </td></shiro:hasPermission>--%>
  107. <%-- </tr>--%>
  108. <%-- </c:forEach>--%>
  109. <%-- </tbody>--%>
  110. <%-- </table>--%>
  111. <%-- <div class="pagination">${page}</div>--%>
  112. <%--</body>--%>
  113. <%--</html>--%>