userBalanceWithdrawalsEdit.jsp 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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>
  8. a[href]:after {
  9. content: none !important;
  10. }
  11. .table th{text-align:center}
  12. .table td{text-align:center}
  13. .payment-form h4{width:96%;margin-left:2%;padding-bottom:20px;text-align:center;border-bottom:1px solid #eee}
  14. .required{color:red}
  15. .payment-form label{width:105px;text-align:right;vertical-align:middle;font-weight:600}
  16. .payment-form-top{padding:10px 0}
  17. .payment-form-top>div,.payment-form-bottom>div{width:94%;margin-left:3%;height:50px;line-height:50px;border-bottom:1px solid #eee;white-space:nowrap}
  18. .payment-form-top input{vertical-align:baseline}
  19. .payment-form-top>div:last-child span{margin-left:15px}
  20. .payment-form-top>div:last-child span:nth-of-type(1){margin-left:0}
  21. .pay-table th{background:#f9f9f9}
  22. .pay-table tr:first-child th{background:#eee !important}
  23. .pay-table td{background:#fff !important}
  24. .check-btn{width:96%;margin-left:2%;text-align:center;height:60px;line-height:60px;margin-top:30px}
  25. .check-btn button{width:100px;height:35px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:none;border:1px solid #ddd}
  26. .payment-form-bottom label{width:140px}
  27. .process-details span{width:140px;margin-left:50px;font-weight:600}
  28. .process-details div{display:inline-block}
  29. .payment-btn button{width:100px;height:35px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:none;border:1px solid #ddd}
  30. .apply-btn{background:#3daae9;color:#fff}
  31. .tips-popup-content div{width:100%;text-align:center}
  32. .tips-popup-content p{text-align:center;padding:80px;font-size:20px}
  33. .tips-popup-content h4{padding-left:10px;height:40px;line-height:40px;border-bottom:1px solid #eee;margin-bottom:20px}
  34. .payment-form-bottom .wipeImgs{height:auto;padding:8px 0;}
  35. .wipeImgs img{width:120px;height:90px;background-color:#eee;margin-right:15px;}
  36. </style>
  37. <style media="print">
  38. .styleWidth{width:6%;word-break:break-all}
  39. .styleWidth{}
  40. .styleWidth3{width:10%;word-break:break-all}
  41. .table{margin-left:0;margin-bottom:20px;padding-bottom:2px;border-bottom:1px solid #ddd;box-sizing:border-box}
  42. .export{display:none}
  43. </style>
  44. </head>
  45. <body>
  46. <ul class="nav nav-tabs">
  47. <li><a href="${ctx}/user/cmUserBalanceWithdrawals/">余额提现列表</a></li>
  48. <li class="active"><a href="${ctx}/user/cmUserBalanceWithdrawals/withdrawalEdit?id=${balanceWithdrawals.id}">提现单详情</a></li>
  49. </ul><br/>
  50. <form:form id="inputForm" modelAttribute="balanceWithdrawals" action="${ctx}/user/cmUserBalanceWithdrawals/withdrawalEditSave?id=${balanceWithdrawals.id}" method="post" class="form-horizontal">
  51. <div class="payment-form">
  52. <h4>提现单</h4>
  53. <div class="payment-form-top">
  54. <div>
  55. <label>机构名称:</label>
  56. <span>${balanceWithdrawals.clubName}</span>
  57. </div>
  58. <div>
  59. <label>提现账号:</label>
  60. <span>户名:${balanceWithdrawals.bankAccountName}</span>&nbsp;&nbsp;
  61. <span>账号:${balanceWithdrawals.bankAccountNo}</span>&nbsp;&nbsp;
  62. <span>开户行:${balanceWithdrawals.openBank}</span>&nbsp;&nbsp;
  63. <span>账户类型:
  64. <c:if test="${balanceWithdrawals.bankAccountType == '1'}">公帐</c:if>
  65. <c:if test="${balanceWithdrawals.bankAccountType == '2'}">私帐</c:if>
  66. </span>
  67. </div>
  68. <div>
  69. <label>提现金额:</label>
  70. <span>${balanceWithdrawals.withdrawalsFee}</span>
  71. </div>
  72. <div>
  73. <label>备注:</label>
  74. <span>${balanceWithdrawals.remark}</span>
  75. </div>
  76. <div>
  77. <label>申请人:</label>
  78. <span>${balanceWithdrawals.applicantName}</span>
  79. </div>
  80. <div>
  81. <label>申请时间:</label>
  82. <span><fmt:formatDate value="${balanceWithdrawals.addDate}" pattern="yyyy-MM-dd HH:mm:ss"/> </span>
  83. </div>
  84. <div>
  85. <label>审核状态:</label>
  86. <span>
  87. <c:if test="${balanceWithdrawals.status == '0'}">
  88. <font color="red">
  89. <strong>待审核</strong>
  90. </font>
  91. </c:if>
  92. <c:if test="${balanceWithdrawals.status == '1'}">
  93. 审核通过
  94. </c:if>
  95. <c:if test="${balanceWithdrawals.status == '2'}">
  96. 审核不通过
  97. </c:if>
  98. </span>
  99. </div>
  100. <c:if test="${balanceWithdrawals.status == '2'}">
  101. <div>
  102. <label>原因:</label>
  103. <span class="required">${balanceWithdrawals.reason}</span>
  104. </div>
  105. </c:if>
  106. <c:if test="${balanceWithdrawals.status == '1'}">
  107. <div>
  108. <label>审核时间:</label>
  109. <span><fmt:formatDate value="${balanceWithdrawals.reviewTime}" pattern="yyyy-MM-dd HH:mm:ss"/></span>
  110. </div>
  111. <div>
  112. <label>付款银行:</label>
  113. <span>
  114. <form:select path="payType" class="input-medium required">
  115. <form:option value="" label="请选择"/>
  116. <form:option value="1" label="建设银行7297"/>
  117. <form:option value="2" label="中信银行0897"/>
  118. <form:option value="3" label="中信银行7172"/>
  119. <form:option value="4" label="广发银行0115"/>
  120. <form:option value="5" label="广发银行5461"/>
  121. <form:option value="7" label="华夏银行2400"/>
  122. <form:option value="8" label="中国银行9452"/>
  123. </form:select>
  124. </span>
  125. </div>
  126. <div>
  127. <label>付款时间:</label>
  128. <span><form:input path="payTime" type="text" maxlength="20" class="input-medium Wdate" value="${balanceWithdrawals.startTime}" onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',isShowClear:false});"/></span>
  129. </div>
  130. </c:if>
  131. </div>
  132. <div class="form-actions">
  133. <shiro:hasPermission name="order:cmPayShop:edit"><input id="btnSubmit" class="btn btn-primary" type="submit" value="确 认"/>&nbsp;</shiro:hasPermission>
  134. <input id="btnCancel" class="btn" type="button" value="返 回" onclick="history.go(-1)"/>
  135. </div>
  136. </div>
  137. </form:form>
  138. <script>
  139. (function(){
  140. $('.export').on('click',function() {
  141. window.print();
  142. })
  143. })()
  144. </script>
  145. </body>
  146. </html>