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

34 lines
1.9 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<form id='drawForm' autocomplete='off' >
<input type="hidden" id="token" value='{:WSTConf("CONF.pwdModulusKey")}'/>
<table width='100%' style='margin-top:10px;' class='wst-form' style='dislay:none'>
<tr>
<th width='120' align='right'>提现账号<font color='red'>*</font></th>
<td>
<select id='accId' class='j-ipt' data-rule="开卡银行: required;">
<option value=''>请选择</option>
{volist name="accs" id="vo"}
<option value='{$vo["id"]}'>{$vo["accUser"]}|{$vo["accNo"]}</option>
{/volist}
</select>
</td>
</tr>
<tr>
<th align='right'>提现金额<font color='red'>*</font></th>
<td>
<input type='text' id='money' class='j-ipt' style='width:250px' data-rule="提现金额: required;" onkeypress="return WST.isNumberdoteKey(event)" onblur="javascript:WST.limitDecimal(this,2)" onkeyup="javascript:WST.isChinese(this,1)" placeholder="可提现金额:¥{$user['userMoney']-$user['rechargeMoney']}" autocomplete="off"/>
</td>
</tr>
<tr height='40'>
<th align='right'>支付密码<font color='red'>*</font></th>
<input type="password" style="display:none">
<td><input type='password' id='payPwd' class='j-ipt' style='width:250px' data-rule="支付密码: required;" autocomplete="off"/></td>
</tr>
<tr>
<td colspan='2' style='text-align: center;padding-top:5px;'>
<button type='button' class='wst-sec-but u-btn' onclick="drawMoney()">保存</button>
<button type='button' style='margin-left:10px;' class='wst-user-buta2 u-btn' onclick='layerclose()'>取消</button>
</td>
</tr>
</table>
</form>
<script type="text/javascript" src="__STATIC__/js/rsa.js"></script>