You've already forked qlg.tsgz.moe
							
							
		
			
				
	
	
		
			85 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.6 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"}
 | |
| <style>
 | |
|   th{height:25px;}
 | |
| </style>
 | |
| <form autocomplete='off' id='editFrom'>
 | |
|     <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>提现结果:</th>
 | |
|            <td class='layui-form'>
 | |
|              <label>
 | |
|                <input type='radio' name='cashSatus' class='ipt' value='1' title='提现成功'/>
 | |
|              </label>
 | |
|              <label>
 | |
|                <input type='radio' name='cashSatus' class='ipt' value='-1' title='提现失败'/>
 | |
|              </label>
 | |
|            </td>
 | |
|         </tr>
 | |
|         <tr >
 | |
|            <th valign='top'>提现备注:<br/>(用户可见)  </th>
 | |
|            <td>
 | |
|              <textarea id='cashRemarks' class='ipt' style='width:70%;height:80px;'></textarea>
 | |
|            </td>
 | |
|         </tr>
 | |
|         <tr>
 | |
|            <td colspan='2' align='center'>
 | |
|            		<button type="button" class="btn btn-primary btn-mright" onclick='javascript:save()'><i class="fa fa-check"></i>提交</button> 
 | |
|               <button type="button" class="btn" onclick="javascript:history.go(-1)"><i class="fa fa-angle-double-left"></i>返回</button>
 | |
|            </td>
 | |
|         </tr>
 | |
|     </table>
 | |
| </form>
 | |
| {/block} |