bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!-- $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}&nbsp;&nbsp;&lt;{$repay.email}&gt;</td>
    </tr>
    <tr>
      <td>{$lang.amount}:{$repay.amount}&nbsp;&nbsp;&lt;{$lang.user_money}:{$repay.user_money}&gt;</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>&nbsp;</td>
  </tr>
  {if $repay.is_repayed eq 1}
  <tr>
    <td>&nbsp;</td><td>{$lang.had_reply_content}</td>
  </tr>
  {/if}
  {if $repay.is_repayed eq 2}
  <tr>
    <td>&nbsp;</td><td>{$lang.have_reply_content}</td>
  </tr>
  {/if}
  <tr>
    <td>&nbsp;</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">&nbsp;&nbsp;&nbsp;<input name="skip" value="{$lang.button_skip}" type="submit" class="button">
      {/if}
    </td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</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"}