toCmWithdrawalsForm.jsp 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. <script type="text/javascript">
  8. $(document).ready(function() {
  9. $("#inputForm").validate({
  10. ignore:"",
  11. submitHandler: function(form){
  12. loading('正在提交,请稍等...');
  13. form.submit();
  14. },
  15. errorContainer: "#messageBox",
  16. errorPlacement: function(error, element) {
  17. $("#messageBox").text("输入有误,请先更正。");
  18. if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
  19. error.appendTo(element.parent().parent());
  20. } else {
  21. error.insertAfter(element);
  22. }
  23. }
  24. });
  25. });
  26. </script>
  27. </head>
  28. <ul class="nav nav-tabs"></ul>
  29. <br/>
  30. <form:form id="inputForm" modelAttribute="cmUserBalanceRecord" action="" method="post" class="form-horizontal">
  31. <sys:message content="${message}"/>
  32. <c:if test="${not empty cmUser}">
  33. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会所名称:${cmUser.userName}
  34. </c:if>
  35. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;提现时间:<fmt:formatDate value="${cmUserBalanceWithdrawals.addDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
  36. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;提现金额:<fmt:formatNumber value="${cmUserBalanceWithdrawals.withdrawalsFee}" pattern="#,##0.00"/>
  37. <br>提现会所账户:
  38. 户名:${cmUserBalanceWithdrawals.bankAccountName}
  39. &nbsp;&nbsp;&nbsp;账号:${cmUserBalanceWithdrawals.bankAccountNo}
  40. &nbsp;&nbsp;&nbsp;开户行:${cmUserBalanceWithdrawals.openBank}
  41. &nbsp;&nbsp;&nbsp;账户类型:
  42. <c:if test="${cmUserBalanceWithdrawals.bankAccountType == '1'}">公帐</c:if>
  43. <c:if test="${cmUserBalanceWithdrawals.bankAccountType == '2'}">私帐</c:if>
  44. <%--<br>采美付款银行:
  45. <c:if test="${cmUserBalanceWithdrawals.payType == '1'}">
  46. 建设银行7297
  47. </c:if>
  48. <c:if test="${cmUserBalanceWithdrawals.payType == '2'}">
  49. 中信银行0897
  50. </c:if>
  51. <c:if test="${cmUserBalanceWithdrawals.payType == '3'}">
  52. 中信银行7172
  53. </c:if>
  54. <c:if test="${cmUserBalanceWithdrawals.payType == '4'}">
  55. 广发银行0115
  56. </c:if>
  57. <c:if test="${cmUserBalanceWithdrawals.payType == '5'}">
  58. 广发银行5461
  59. </c:if>--%>
  60. <c:if test="${not empty cmUserBalanceWithdrawals.remark}">
  61. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;备注:<div style="width: 755px;margin-left: 94px;margin-top: -19px;">${cmUserBalanceWithdrawals.remark}</div>
  62. </c:if>
  63. <c:if test="${empty cmUserBalanceWithdrawals.remark}">
  64. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;备注:无
  65. </c:if>
  66. </form:form>
  67. </body>
  68. </html>