123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
- <html>
- <head>
- <title>提现详情</title>
- <meta name="decorator" content="default"/>
- <script type="text/javascript">
- $(document).ready(function() {
- $("#inputForm").validate({
- ignore:"",
- submitHandler: function(form){
- loading('正在提交,请稍等...');
- form.submit();
- },
- errorContainer: "#messageBox",
- errorPlacement: function(error, element) {
- $("#messageBox").text("输入有误,请先更正。");
- if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
- error.appendTo(element.parent().parent());
- } else {
- error.insertAfter(element);
- }
- }
- });
- });
- </script>
- </head>
- <ul class="nav nav-tabs"></ul>
- <br/>
- <form:form id="inputForm" modelAttribute="cmUserBalanceRecord" action="" method="post" class="form-horizontal">
- <sys:message content="${message}"/>
- <c:if test="${not empty cmUser}">
- 会所名称:${cmUser.userName}
- </c:if>
- <br> 提现时间:<fmt:formatDate value="${cmUserBalanceWithdrawals.addDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
- <br> 提现金额:<fmt:formatNumber value="${cmUserBalanceWithdrawals.withdrawalsFee}" pattern="#,##0.00"/>
- <br>提现会所账户:
- 户名:${cmUserBalanceWithdrawals.bankAccountName}
- 账号:${cmUserBalanceWithdrawals.bankAccountNo}
- 开户行:${cmUserBalanceWithdrawals.openBank}
- 账户类型:
- <c:if test="${cmUserBalanceWithdrawals.bankAccountType == '1'}">公帐</c:if>
- <c:if test="${cmUserBalanceWithdrawals.bankAccountType == '2'}">私帐</c:if>
- <%--<br>采美付款银行:
- <c:if test="${cmUserBalanceWithdrawals.payType == '1'}">
- 建设银行7297
- </c:if>
- <c:if test="${cmUserBalanceWithdrawals.payType == '2'}">
- 中信银行0897
- </c:if>
- <c:if test="${cmUserBalanceWithdrawals.payType == '3'}">
- 中信银行7172
- </c:if>
- <c:if test="${cmUserBalanceWithdrawals.payType == '4'}">
- 广发银行0115
- </c:if>
- <c:if test="${cmUserBalanceWithdrawals.payType == '5'}">
- 广发银行5461
- </c:if>--%>
- <c:if test="${not empty cmUserBalanceWithdrawals.remark}">
- <br> 备注:<div style="width: 755px;margin-left: 94px;margin-top: -19px;">${cmUserBalanceWithdrawals.remark}</div>
- </c:if>
- <c:if test="${empty cmUserBalanceWithdrawals.remark}">
- <br> 备注:无
- </c:if>
- </form:form>
- </body>
- </html>
|