| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- ${Styles.htmlOverflowHidden()}
- ${Scripts.src("/zinc/js/global_2019010801.js")}
- ${yangcai_calc_Left_width_height(400, 70)}
- ${zhiqim_manager_content()}
- <script>
- function re(){
- parent.location.reload()="/manager/main.htm";
- }
- </script>
- <#-- 导航栏 -->
- <div class="z-tabnav-main z-blue z-mg-b20">
- <nav>
- <ul>
- <li onclick="Z.Location.href('virtualAccountTransactionDetails.htm?status=${status}&operatorCode=${operatorCode}');">交易明细</li>
- <li class="z-active">账户明细</li>
- </ul>
- </nav>
- </div>
- <#-- 查询条件 -->
- ${zhiqim_manager_title("查询条件")}
- <form name="theForm" action="virtualAccountDetails.htm?status=${status}&operatorCode=${operatorCode}" method="post">
- <table class="z-table z-bordered z-pd6 z-bg-white" >
- <tr class="z-h40">
- <td> 账户流水:
- <input name="accountBlotter" id="accountBlotter" class="z-input z-w180 ${zmr_color_class}" value="">
- </td>
- <td> 交易流水:
- <input name="transactionBlotter" id="transactionBlotter" class="z-input z-w180 ${zmr_color_class}" value="">
- </td>
- <td > 交易类型:
- <select name="typeId" class="z-select z-w180" data-role="z-select" data-class="${zmr_color_class}">
- <option value="">全部</option>
- <#for item : statusType>
- <option value="${item.getTypeId()}" <#if typeId == item.getTypeId()>selected</#if>>${item.getTypeName()}</option>
- </#for>
- </select>
- </td>
- <td> 交易时间:
- <input name="beginDate" id="beginDate" onfocus="Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120" value="${beginDate}"> -
- <input name="endDate" id="endDate" onfocus="Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120" value="${endDate}">
- </td>
- <td width="460px">
- <button class="z-button z-blue z-large"><i class="z-font z-query"></i>查询</button>
- <button class="z-button z-large" type="button" onclick="Z.FM.clearForm(this.form);">清空</button>
- </td>
- </tr>
- </table>
- </form>
- <div class="z-table z-bordered z-h70-tr z-pd5 z-bg-white z-text-center" style="width:100%" >
- <#-- 分页列表-->
- <div class="z-overflow-auto z-bd-r">
- <table class="z-table z-bordered zi-bd-r-none z-bg-white z-pd6" >
- <tr class="z-text-center z-h40" bgcolor="${zmr_thead_bgcolor}" data-layoutCode="virtualAccountDetailsAction.zml">
- <td width="9%">账户流水</td>
- <td width="5%">账户名称</td>
- <td width="9%">交易流水</td>
- <td width="6%">交易类型</td>
- <td width="7%">可提现增加(元)</td>
- <td width="7%">可提现减少(元)</td>
- <td width="7%">待结算增加(元)</td>
- <td width="7%">待结算减少(元)</td>
- <td width="8%">变动后可提现(元)</td>
- <td width="8%">变动后待结算(元)</td>
- <td width="8%">变动后总收入(元)</td>
- <td width="5.5%">交易时间</td>
- <td width="8%">备注</td>
- </tr>
- <#if pageResult.size() == 0>
- ${zhiqim_manager_no_record(26,"暂不存在账户明细")}
- </#if>
- <#for item : pageResult.list()>
- <tr align="center" class="z-h40 ">
- <td>${item.getAccountBlotter()}</td>
- <td>${item.getOperatorCode()}</td>
- <td>${item.getTransactionBlotter()}</td>
- <td>${VirtualAccountConstants.getTransactionStatusListDesc(item.getTransactionStatus()+"")}</td>
- <td><#if Amounts.toYuan(item.getUsableMoneyAdd())=0>0<#else>${Amounts.toYuan(item.getUsableMoneyAdd())}</#if></td>
- <td><#if Amounts.toYuan(item.getUsableMoneyDown())=0>0<#else>${Amounts.toYuan(item.getUsableMoneyDown())}</#if></td>
- <td><#if Amounts.toYuan(item.getFreezeMoneyAdd())=0>0<#else>${Amounts.toYuan(item.getFreezeMoneyAdd())}</#if></td>
- <td><#if Amounts.toYuan(item.getFreezeMoneyDown())=0>0<#else>${Amounts.toYuan(item.getFreezeMoneyDown())}</#if></td>
- <td><#if Amounts.toYuan(item.getUsableMoney())=0>0<#else>${Amounts.toYuan(item.getUsableMoney())}</#if></td>
- <td><#if Amounts.toYuan(item.getFreezeMoney())=0>0<#else>${Amounts.toYuan(item.getFreezeMoney())}</#if></td>
- <td><#if Amounts.toYuan(item.getSumMoney())=0>0<#else>${Amounts.toYuan(item.getSumMoney())}</#if></td>
- <td>${Sqls.toDateTimeString(item.getOperatorTime())}</td>
- <td>${item.getOperatorRemark()}</td>
- </tr>
- </#for>
- </table>
- </div>
- ${zhiqim_manager_paging(pageResult, "/virtualAccountDetails.htm")}
- </div>
- <button style="color: #333;background-color: #f2f2f2;border: 1px solid #c3c3c3;height:30px" onclick="re();">返回上一页</button>
- ${zhiqim_manager_content_end()}
|