virtualAccountDetails.zml 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. ${Styles.htmlOverflowHidden()}
  2. ${Scripts.src("/zinc/js/global_2019010801.js")}
  3. ${yangcai_calc_Left_width_height(400, 70)}
  4. ${zhiqim_manager_content()}
  5. <#-- 导航栏 -->
  6. <div class="z-tabnav-main z-blue z-mg-b20">
  7. <nav>
  8. <ul>
  9. <li onclick="Z.Location.href('virtualAccountTransactionDetails.htm?status=${status}&operatorCode=${operatorCode}');">交易明细</li>
  10. <li class="z-active">账户明细</li>
  11. </ul>
  12. </nav>
  13. </div>
  14. <#-- 查询条件 -->
  15. ${zhiqim_manager_title("查询条件")}
  16. <form name="theForm" action="virtualAccountDetails.htm?status=${status}&operatorCode=${operatorCode}" method="post">
  17. <table class="z-table z-bordered z-pd6 z-bg-white" >
  18. <tr class="z-h40">
  19. <td>&nbsp;账户流水:
  20. <input name="accountBlotter" id="accountBlotter" class="z-input z-w180 ${zmr_color_class}" value="">
  21. </td>
  22. <td>&nbsp;交易流水:
  23. <input name="transactionBlotter" id="transactionBlotter" class="z-input z-w180 ${zmr_color_class}" value="${transactionBlotter}">
  24. </td>
  25. <td >&nbsp;交易类型:
  26. <select name="typeId" class="z-select z-w180" data-role="z-select" data-class="${zmr_color_class}">
  27. <option value="">全部</option>
  28. <#for item : statusType>
  29. <option value="${item.getTypeId()}" <#if typeId == item.getTypeId()>selected</#if>>${item.getTypeName()}</option>
  30. </#for>
  31. </select>
  32. </td>
  33. <td>&nbsp;交易时间:
  34. <input name="beginDate" id="beginDate" onfocus="Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120" value="${beginDate}"> -
  35. <input name="endDate" id="endDate" onfocus="Z.date(this);" readonly class="z-input ${zmr_color_class} z-w120" value="${endDate}">
  36. </td>
  37. <td width="460px">
  38. <button class="z-button z-blue z-large"><i class="z-font z-query"></i>查询</button>&nbsp;
  39. <button class="z-button z-large" type="button" onclick="Z.FM.clearForm(this.form);">清空</button>
  40. </td>
  41. </tr>
  42. </table>
  43. </form>
  44. <div class="z-table z-bordered z-h70-tr z-pd5 z-bg-white z-text-center" style="width:100%" >
  45. <#-- 分页列表-->
  46. <div class="z-overflow-auto z-bd-r">
  47. <table class="z-table z-bordered zi-bd-r-none z-bg-white z-pd6" >
  48. <tr class="z-text-center z-h40" bgcolor="${zmr_thead_bgcolor}" data-layoutCode="virtualAccountDetailsAction.zml">
  49. <td width="9%">账户流水</td>
  50. <td width="5%">账户名称</td>
  51. <td width="9%">交易流水</td>
  52. <td width="6%">交易类型</td>
  53. <td width="7%">可提现增加(元)</td>
  54. <td width="7%">可提现减少(元)</td>
  55. <td width="7%">待结算增加(元)</td>
  56. <td width="7%">待结算减少(元)</td>
  57. <td width="8%">变动后可提现(元)</td>
  58. <td width="8%">变动后待结算(元)</td>
  59. <td width="8%">变动后总收入(元)</td>
  60. <td width="5.5%">交易时间</td>
  61. <td width="8%">备注</td>
  62. </tr>
  63. <#if pageResult.size() == 0>
  64. ${zhiqim_manager_no_record(26,"暂不存在账户明细")}
  65. </#if>
  66. <#for item : pageResult.list()>
  67. <tr align="center" class="z-h40 ">
  68. <td>${item.getAccountBlotter()}</td>
  69. <td>${item.getOperatorCode()}</td>
  70. <td>${item.getTransactionBlotter()}</td>
  71. <td>${VirtualAccountConstants.getTransactionStatusListDesc(item.getTransactionStatus()+"")}</td>
  72. <td><#if Amounts.toYuan(item.getUsableMoneyAdd())=0>0<#else>${Amounts.toYuan(item.getUsableMoneyAdd())}</#if></td>
  73. <td><#if Amounts.toYuan(item.getUsableMoneyDown())=0>0<#else>${Amounts.toYuan(item.getUsableMoneyDown())}</#if></td>
  74. <td><#if Amounts.toYuan(item.getFreezeMoneyAdd())=0>0<#else>${Amounts.toYuan(item.getFreezeMoneyAdd())}</#if></td>
  75. <td><#if Amounts.toYuan(item.getFreezeMoneyDown())=0>0<#else>${Amounts.toYuan(item.getFreezeMoneyDown())}</#if></td>
  76. <td><#if Amounts.toYuan(item.getUsableMoney())=0>0<#else>${Amounts.toYuan(item.getUsableMoney())}</#if></td>
  77. <td><#if Amounts.toYuan(item.getFreezeMoney())=0>0<#else>${Amounts.toYuan(item.getFreezeMoney())}</#if></td>
  78. <td><#if Amounts.toYuan(item.getSumMoney())=0>0<#else>${Amounts.toYuan(item.getSumMoney())}</#if></td>
  79. <td>${Sqls.toDateTimeString(item.getOperatorTime())}</td>
  80. <td>${item.getOperatorRemark()}</td>
  81. </tr>
  82. </#for>
  83. </table>
  84. </div>
  85. ${zhiqim_manager_paging(pageResult, "/virtualAccountDetails.htm")}
  86. </div>
  87. ${zhiqim_manager_content_end()}