123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
- <html>
- <head>
- <title>提现审核管理</title>
- <meta name="decorator" content="default"/>
- <style>
- a[href]:after {
- content: none !important;
- }
- .table th{text-align:center}
- .table td{text-align:center}
- .payment-form h4{width:96%;margin-left:2%;padding-bottom:20px;text-align:center;border-bottom:1px solid #eee}
- .required{color:red}
- .payment-form label{width:105px;text-align:right;vertical-align:middle;font-weight:600}
- .payment-form-top{padding:10px 0}
- .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}
- .payment-form-top input{vertical-align:baseline}
- .payment-form-top>div:last-child span{margin-left:15px}
- .payment-form-top>div:last-child span:nth-of-type(1){margin-left:0}
- .pay-table th{background:#f9f9f9}
- .pay-table tr:first-child th{background:#eee !important}
- .pay-table td{background:#fff !important}
- .check-btn{width:96%;margin-left:2%;text-align:center;height:60px;line-height:60px;margin-top:30px}
- .check-btn button{width:100px;height:35px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:none;border:1px solid #ddd}
- .payment-form-bottom label{width:140px}
- .process-details span{width:140px;margin-left:50px;font-weight:600}
- .process-details div{display:inline-block}
- .payment-btn button{width:100px;height:35px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:none;border:1px solid #ddd}
- .apply-btn{background:#3daae9;color:#fff}
- .tips-popup-content div{width:100%;text-align:center}
- .tips-popup-content p{text-align:center;padding:80px;font-size:20px}
- .tips-popup-content h4{padding-left:10px;height:40px;line-height:40px;border-bottom:1px solid #eee;margin-bottom:20px}
- .payment-form-bottom .wipeImgs{height:auto;padding:8px 0;}
- .wipeImgs img{width:120px;height:90px;background-color:#eee;margin-right:15px;}
- </style>
- <style media="print">
- .styleWidth{width:6%;word-break:break-all}
- .styleWidth{}
- .styleWidth3{width:10%;word-break:break-all}
- .table{margin-left:0;margin-bottom:20px;padding-bottom:2px;border-bottom:1px solid #ddd;box-sizing:border-box}
- .export{display:none}
- </style>
- </head>
- <body>
- <ul class="nav nav-tabs">
- <li><a href="${ctx}/user/cmUserBalanceWithdrawals/">余额提现列表</a></li>
- <li class="active"><a href="${ctx}/user/cmUserBalanceWithdrawals/withdrawalEdit?id=${balanceWithdrawals.id}">提现单详情</a></li>
- </ul><br/>
- <form:form id="inputForm" modelAttribute="balanceWithdrawals" action="${ctx}/user/cmUserBalanceWithdrawals/withdrawalEditSave?id=${balanceWithdrawals.id}" method="post" class="form-horizontal">
- <div class="payment-form">
- <h4>提现单</h4>
- <div class="payment-form-top">
- <div>
- <label>机构名称:</label>
- <span>${balanceWithdrawals.clubName}</span>
- </div>
- <div>
- <label>提现账号:</label>
- <span>户名:${balanceWithdrawals.bankAccountName}</span>
- <span>账号:${balanceWithdrawals.bankAccountNo}</span>
- <span>开户行:${balanceWithdrawals.openBank}</span>
- <span>账户类型:
- <c:if test="${balanceWithdrawals.bankAccountType == '1'}">公帐</c:if>
- <c:if test="${balanceWithdrawals.bankAccountType == '2'}">私帐</c:if>
- </span>
- </div>
- <div>
- <label>提现金额:</label>
- <span>${balanceWithdrawals.withdrawalsFee}</span>
- </div>
- <div>
- <label>备注:</label>
- <span>${balanceWithdrawals.remark}</span>
- </div>
- <div>
- <label>申请人:</label>
- <span>${balanceWithdrawals.applicantName}</span>
- </div>
- <div>
- <label>申请时间:</label>
- <span><fmt:formatDate value="${balanceWithdrawals.addDate}" pattern="yyyy-MM-dd HH:mm:ss"/> </span>
- </div>
- <div>
- <label>审核状态:</label>
- <span>
- <c:if test="${balanceWithdrawals.status == '0'}">
- <font color="red">
- <strong>待审核</strong>
- </font>
- </c:if>
- <c:if test="${balanceWithdrawals.status == '1'}">
- 审核通过
- </c:if>
- <c:if test="${balanceWithdrawals.status == '2'}">
- 审核不通过
- </c:if>
- </span>
- </div>
- <c:if test="${balanceWithdrawals.status == '2'}">
- <div>
- <label>原因:</label>
- <span class="required">${balanceWithdrawals.reason}</span>
- </div>
- </c:if>
- <c:if test="${balanceWithdrawals.status == '1'}">
- <div>
- <label>审核时间:</label>
- <span><fmt:formatDate value="${balanceWithdrawals.reviewTime}" pattern="yyyy-MM-dd HH:mm:ss"/></span>
- </div>
- <div>
- <label>付款银行:</label>
- <span>
- <form:select path="payType" class="input-medium required">
- <form:option value="" label="请选择"/>
- <form:option value="1" label="建设银行7297"/>
- <form:option value="2" label="中信银行0897"/>
- <form:option value="3" label="中信银行7172"/>
- <form:option value="4" label="广发银行0115"/>
- <form:option value="5" label="广发银行5461"/>
- <form:option value="7" label="华夏银行2400"/>
- <form:option value="8" label="中国银行9452"/>
- </form:select>
- </span>
- </div>
- <div>
- <label>付款时间:</label>
- <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>
- </div>
- </c:if>
- </div>
- <div class="form-actions">
- <shiro:hasPermission name="order:cmPayShop:edit"><input id="btnSubmit" class="btn btn-primary" type="submit" value="确 认"/> </shiro:hasPermission>
- <input id="btnCancel" class="btn" type="button" value="返 回" onclick="history.go(-1)"/>
- </div>
- </div>
- </form:form>
- <script>
- (function(){
- $('.export').on('click',function() {
- window.print();
- })
- })()
- </script>
- </body>
- </html>
|