cmUserBalanceWithdrawalsList.jsp 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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}/balance/cmUserBalanceWithdrawals/">余额提现列表</a></li>
  25. <li><a href="${ctx}/user/cmUserBalanceRecord/userBalanceList">机构余额</a></li>
  26. </ul>
  27. <form:form id="searchForm" modelAttribute="cmUserBalanceWithdrawals" action="${ctx}/balance/cmUserBalanceWithdrawals/" 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" class="input-medium"/>
  33. <label>机构名称:</label>
  34. <form:input path="clubName" htmlEscape="false" maxlength="20" class="input-medium"/>
  35. <label>申请时间:</label>
  36. <input name="startTime" type="text" readonly="readonly" maxlength="20" class="input-medium Wdate"
  37. value="<fmt:formatDate value="${testData.beginInDate}" pattern="yyyy-MM-dd HH:mm:ss"/>"
  38. onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',isShowClear:false});"/> -
  39. <input name="endTime" type="text" readonly="readonly" maxlength="20" class="input-medium Wdate"
  40. value="<fmt:formatDate value="${testData.endInDate}" pattern="yyyy-MM-dd HH:mm:ss"/>"
  41. onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',isShowClear:false});"/><br><br>
  42. <label>审核状态:</label>
  43. <form:select path="status" class="input-medium required" style="width:160px">
  44. <form:option value="" label="全部"/>
  45. <form:option value="0" label="待审核"/>
  46. <form:option value="1" label="审核通过"/>
  47. <form:option value="2" label="审核不通过"/>
  48. </form:select>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  49. &nbsp;&nbsp;<input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>
  50. <div class="clearfix"></div>
  51. </div>
  52. </form:form>
  53. <sys:message content="${message}"/>
  54. <table id="contentTable" class="table table-striped table-bordered table-condensed">
  55. <thead>
  56. <tr>
  57. <th>提现单ID</th>
  58. <th>机构名称</th>
  59. <th>提现金额</th>
  60. <th>申请人</th>
  61. <th>申请时间</th>
  62. <th>审核人</th>
  63. <th>审核时间</th>
  64. <th>审核状态</th>
  65. <th>操作</th>
  66. </tr>
  67. </thead>
  68. <tbody>
  69. <c:forEach items="${page.list}" var="cmUserBalanceWithdrawals">
  70. <tr>
  71. <td>${cmUserBalanceWithdrawals.id}</td>
  72. <td>${cmUserBalanceWithdrawals.clubName}</td>
  73. <td>${cmUserBalanceWithdrawals.withdrawalsFee}</td>
  74. <td>${cmUserBalanceWithdrawals.applicantName}</td>
  75. <td>
  76. <fmt:formatDate value="${cmUserBalanceWithdrawals.addDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
  77. </td>
  78. <td>${cmUserBalanceWithdrawals.reviewerName}</td>
  79. <td>
  80. <fmt:formatDate value="${cmUserBalanceWithdrawals.reviewTime}" pattern="yyyy-MM-dd HH:mm:ss"/>
  81. </td>
  82. <td>
  83. <c:if test="${cmUserBalanceWithdrawals.status eq 0}">
  84. <font color="#DB7B3B">待审核</font>
  85. </c:if>
  86. <c:if test="${cmUserBalanceWithdrawals.status eq 1}">
  87. <font color="green">审核通过</font>
  88. </c:if>
  89. <c:if test="${cmUserBalanceWithdrawals.status eq 2}">
  90. <font color="red">审核不通过</font>
  91. </c:if>
  92. </td>
  93. <td>
  94. <a href="${ctx}/balance/cmUserBalanceWithdrawals/viewDetails?id=${cmUserBalanceWithdrawals.id}">查看详情</a><br>
  95. <c:if test="${cmUserBalanceWithdrawals.status eq 0}">
  96. <shiro:hasPermission name="balance:cmUserBalanceWithdrawals:delete">
  97. <a href="${ctx}/balance/cmUserBalanceWithdrawals/delete?id=${cmUserBalanceWithdrawals.id}" onclick="return confirmx('确定要取消本次提现申请吗?', this.href)">取消提现</a><br>
  98. </shiro:hasPermission>
  99. <shiro:hasPermission name="balance:cmUserBalanceWithdrawals:withdrawalReview">
  100. <a href="${ctx}/balance/cmUserBalanceWithdrawals/withdrawalReview?id=${cmUserBalanceWithdrawals.id}">审核</a><br>
  101. </shiro:hasPermission>
  102. </c:if>
  103. <c:if test="${cmUserBalanceWithdrawals.status eq 1}">
  104. <shiro:hasPermission name="balance:cmUserBalanceWithdrawals:edit">
  105. <a href="${ctx}/balance/cmUserBalanceWithdrawals/withdrawalEdit?id=${cmUserBalanceWithdrawals.id}">编辑</a><br>
  106. </shiro:hasPermission>
  107. <shiro:hasPermission name="balance:cmUserBalanceWithdrawals:rollBackApply">
  108. <a href="${ctx}/balance/cmUserBalanceWithdrawals/rollBackApply?id=${cmUserBalanceWithdrawals.id}" onclick="return confirmx('确定撤销本次审核结果,重新再审核一次吗?', this.href)">撤销重来</a><br>
  109. </shiro:hasPermission>
  110. <shiro:hasPermission name="balance:cmUserBalanceWithdrawals:printDetail">
  111. <a href="${ctx}/balance/cmUserBalanceWithdrawals/printDetail?id=${cmUserBalanceWithdrawals.id}">打印</a><br>
  112. </shiro:hasPermission>
  113. </c:if>
  114. </td>
  115. </tr>
  116. </c:forEach>
  117. </tbody>
  118. </table>
  119. <div class="pagination">${page}</div>
  120. </body>
  121. </html>