first commit
Этот коммит содержится в:
@@ -0,0 +1,76 @@
|
||||
${Styles.htmlOverflowHidden()}
|
||||
${Scripts.src("/zinc/js/global_2019010801.js")}
|
||||
${yangcai_calc_Left_width_height(400, 70)}
|
||||
${zhiqim_manager_content()}
|
||||
|
||||
<#-- 导航栏 -->
|
||||
<div class="z-tabnav-main z-blue z-mg-b20">
|
||||
<nav>
|
||||
<ul>
|
||||
<li class="z-active">交易明细</li>
|
||||
<li onclick="Z.Location.href('virtualAccountDetails.htm?status=${status}&operatorCode=${operatorCode}');">账户明细</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
<#-- 查询条件 -->
|
||||
${zhiqim_manager_title("查询条件")}
|
||||
<form name="theForm" action="virtualAccountTransactionDetails.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="transactionBlotter" id="transactionBlotter" class="z-input z-w180 ${zmr_color_class}" value="">
|
||||
</td>
|
||||
<td> 订单号:
|
||||
<input name="designId" id="designId" class="z-input z-w180 ${zmr_color_class}" value="${designId}">
|
||||
</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="virtualAccountTransactionDetails.zml">
|
||||
<td width="10%">交易流水</td>
|
||||
<td width="10%" >订单号</td>
|
||||
<td width="30%" >产品类型</td>
|
||||
<td width="10%">交易时间</td>
|
||||
<td width="10%">交易类型</td>
|
||||
<td width="7%">订单金额(元)</td>
|
||||
</tr>
|
||||
<#if pageResult.size() == 0>
|
||||
${zhiqim_manager_no_record(26,"暂不存在交易明细")}
|
||||
</#if>
|
||||
<#for item : pageResult.list()>
|
||||
<tr align="center" class="z-h40 ">
|
||||
<td>${item.getTransactionBlotter()}</td>
|
||||
<td><#if item.getDesignId()=0>/<#else>${item.getDesignId()}</#if></td>
|
||||
<td><#if item.getOrderText()=null>/<#else>${item.getOrderText()}</#if></td>
|
||||
<td>${Sqls.toDateTimeString(item.getTransactionTime())}</td>
|
||||
<td>${VirtualAccountConstants.getTransactionStatusListDesc(item.getTransactionStatus()+"")}</td>
|
||||
<td>
|
||||
<#if status=999 && item.getTransactionStatus()==101>${Amounts.toYuan(-item.getOrderMoney())}<#else>${Amounts.toYuan(item.getOrderMoney())}</#if>
|
||||
</td>
|
||||
</tr>
|
||||
</#for>
|
||||
</table>
|
||||
</div>
|
||||
${zhiqim_manager_paging(pageResult, "/virtualAccountTransactionDetails.htm")}
|
||||
</div>
|
||||
${zhiqim_manager_content_end()}
|
||||
Ссылка в новой задаче
Block a user