Server : Apache System : Linux iZ2vcgyutqttsd1p850kl8Z 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64 User : www ( 1000) PHP Version : 5.6.40 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/saimikebio.com/ecshopjcw/templates/ |
<!-- $Id: order_info.htm 15544 2009-01-09 01:54:28Z zblikai $ --> {include file="pageheader.htm"} {insert_scripts files="topbar.js,../js/utils.js,listtable.js,selectzone.js,../js/common.js"} <form name="theForm" method="get" action="back.php" onsubmit="return check()"> <div class="list-div"> <table> <tr> <th width="120">操作备注:</th> <td><textarea name="action_note" cols="60" rows="3"></textarea> <span class="require-field">*</span></td> </tr> <tr> <th>退款金额:</th> <td> 金额:<input type="text" name="refund_money_2" value="{$refund.refund_money_1}" /> 运费:<input type="text" name="refund_shipping_fee" value="0.00"> <input type="radio" name="refund_shipping" value="0" onclick="javascript:change_shipping(0);" checked=checked />不退运费<input type="radio" name="refund_shipping" value="1" onclick="javascript:change_shipping(1);" />退运费 </td> </tr> <tr> <th>退款方式:</th> <td> <p><label><input type="radio" name="refund_type" value="1" checked=checked />退回用户余额</label><br> <label><input type="radio" name="refund_type" value="2" />线下退款</label><br> </p> </td> </tr> <tr> <th>退款说明:</th> <td><textarea name="refund_desc" cols="60" rows="3" id="refund_desc"></textarea></td> </tr> <tr> <td colspan="2"> <div align="center"> <input type="submit" name="submit" value=" 确定 " class="button" /> <input type="button" name="back" value="返回" class="button" onclick="history.back()" /> <input type="hidden" name="back_id" value="{$back_id}" /> <input type="hidden" name="act" value="operate_refund" /> </div></td> </tr> </table> </div> </form> <script language="JavaScript"> {literal} //var shipping_fee ={$refund.shipping_fee}; var shipping_fee = new Number({$refund.shipping_fee}); {/literal} function change_shipping(is_shipping) { if (is_shipping == '1') { document.forms['theForm'].elements['refund_shipping_fee'].value = shipping_fee.toFixed(2); } else { document.forms['theForm'].elements['refund_shipping_fee'].value = '0.00'; } } function check() { if ( document.forms['theForm'].elements['action_note'].value == '') { alert('请输入操作备注'); return false; } if (document.forms['theForm'].elements['refund_money_1'].value == '') { alert('请输入退款金额'); return false; } return true; } </script> {include file="pagefooter.htm"}