<!-- $Id: repay_info.htm 14216 2008-03-10 02:27:21Z $ -->
|
{include file="pageheader.htm"}
|
<div class="form-div">
|
<table width="98%">
|
<tr>
|
<td colspan="2">{$repay.user_name} <{$repay.email}></td>
|
</tr>
|
<tr>
|
<td>{$lang.amount}:{$repay.amount} <{$lang.user_money}:{$repay.user_money}></td><td align="right">{$repay.apply_time}</td>
|
</tr>
|
<tr>
|
<td colspan="2"><hr color="#dadada" size="1"></td>
|
</tr>
|
<tr>
|
<td colspan="2">{$repay.method}</td>
|
</tr>
|
|
</table>
|
{if $repay.is_repayed}
|
<ul>
|
<li>{$repay.action_user}{$lang.from}{$repay.action_time}{$lang.reply}:<p>{$repay.action_note}</p></li>
|
</ul>
|
{/if}
|
</div>
|
|
<div class="main-div">
|
<form method="post" action="repay.php?act=action" name="theForm" onsubmit="return validate()">
|
<table border="0" width="98%">
|
<tbody>
|
<tr>
|
|
<td>{$lang.action_note}:</td>
|
<td rowspan="2"><textarea name="action_note" cols="50" rows="2" wrap="VIRTUAL" id="msg_content">{$repay.action_note}</textarea></td>
|
</tr>
|
<tr>
|
<td> </td>
|
</tr>
|
{if $repay.is_repayed eq 1}
|
<tr>
|
<td> </td><td>{$lang.had_reply_content}</td>
|
</tr>
|
{/if}
|
{if $repay.is_repayed eq 2}
|
<tr>
|
<td> </td><td>{$lang.have_reply_content}</td>
|
</tr>
|
{/if}
|
<tr>
|
<td> </td>
|
<td>
|
<input type="hidden" name="id" value="{$repay.rec_id}">
|
{if $repay.is_repayed}
|
<input name="modify" value="{$lang.button_modify}" type="submit" class="button">
|
{else}
|
<input type="hidden" name="amount" value="{$repay.user_amount}">
|
<input type="hidden" name="user_id" value="{$repay.user_id}">
|
<input name="dispose" value="{$lang.button_dipose}" type="submit" class="button"> <input name="skip" value="{$lang.button_skip}" type="submit" class="button">
|
{/if}
|
</td>
|
</tr>
|
<tr>
|
<td> </td>
|
<td> </td>
|
</tr>
|
</tbody>
|
</table>
|
</form>
|
</div>
|
{insert_scripts files="../js/utils.js,validator.js"}
|
{literal}
|
<script language="JavaScript">
|
<!--
|
document.forms['theForm'].elements['action_note'].focus();
|
onload = function()
|
{
|
// 开始检查订单
|
startCheckOrder();
|
}
|
|
/**
|
* 检查表单输入的数据
|
*/
|
function validate()
|
{
|
validator = new Validator("theForm");
|
validator.required("action_note", no_action_note);
|
return validator.passed();
|
}
|
//-->
|
</script>
|
{/literal}
|
{include file="pagefooter.htm"}
|