2019-09-06 23:53:10 +08:00

70 lines
1.9 KiB
HTML
Executable File

{extend name="base" /}
{block name="js"}
<script src="__ADMIN__/cashdraws/cashdraws.js?v={$v}" type="text/javascript"></script>
{/block}
{block name="main"}
<form autocomplete='off'>
<input type='hidden' id='cashId' class='ipt' value="{$object['cashId']}"/>
<table class='wst-form wst-box-top'>
<tr>
<th width='150'>会员类型:</th>
<td>
{if $object['targetType']==1}商家{else}普通会员{/if}
</td>
</tr>
<tr>
<th width='150'>会员名称:</th>
<td>
{$object['userName']}({$object['loginName']})
</td>
</tr>
<tr>
<th width='150'>提现单号:</th>
<td>
{$object['cashNo']}
</td>
</tr>
<tr>
<th>提现金额:</th>
<td>¥{$object['money']}</td>
</tr>
<tr>
<th>提现银行:</th>
<td>{$object['accTargetName']}</td>
</tr>
<tr>
<th>开卡地区:</th>
<td>
{$object['accAreaName']}
</td>
</tr>
<tr>
<th>卡号:</th>
<td>
{$object['accNo']}
</td>
</tr>
<tr>
<th>持卡人:</th>
<td>
{$object['accUser']}
</td>
</tr>
<tr>
<th>申请时间:</th>
<td>{$object['createTime']}</td>
</tr>
<tr >
<th valign='top'>提现备注:<br/>(用户可见)&nbsp;&nbsp;</th>
<td>
{$object['cashRemarks']}
</td>
</tr>
<tr>
<td colspan='2' align='center'>
<button type="button" class="btn" onclick='javascript:history.go(-1)'><i class="fa fa-angle-double-left"></i>返回</button>
</td>
</tr>
</table>
</form>
{/block}