You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
3.6 KiB

3 years ago
<!-- $Id: payment_edit.htm 14401 2008-04-15 02:41:32Z zhuwenyuan $ -->
{include file="pageheader.htm"}
{insert_scripts files="../js/utils.js,validator.js"}
<form action="payment.php" method="post">
<div class="main-div">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td class="label">{$lang.payment_name}</td>
<td><input name="pay_name" type="text" value="{$pay.pay_name|escape}" size="40" /></td>
</tr>
<tr>
<td class="label">{$lang.payment_desc}</td>
<td><textarea name="pay_desc" cols="60" rows="8">{$pay.pay_desc|escape}</textarea></td>
</tr>
{foreach from=$pay.pay_config item=config key=key}
<tr>
<td class="label">
{if $config.desc}
<a href="javascript:showNotice('notice{$config.name}');" title="{$lang.form_notice}"><img src="images/notice.gif" width="14" height="14" border="0" alt="{$lang.form_notice}"></a>
{/if}
<span class="label">{$config.label}
</td>
<td>
<!-- {if $config.type == "text"} -->
<input name="cfg_value[]" type="{$config.type}" value="{$config.value}" size="40" />
<!-- {elseif $config.type == "textarea"} -->
<textarea name="cfg_value[]" cols="80" rows="5">{$config.value}</textarea>
<!-- {elseif $config.type == "select"} -->
<select name="cfg_value[]">{html_options options=$config.range selected=$config.value}</select>
<!-- {/if} -->
<input name="cfg_name[]" type="hidden" value="{$config.name}" />
<input name="cfg_type[]" type="hidden" value="{$config.type}" />
<input name="cfg_lang[]" type="hidden" value="{$config.lang}" />
{if $config.desc}
<br /><span class="notice-span" {if $help_open}style="display:block" {else} style="display:none" {/if} id="notice{$config.name}">{$config.desc}</span>
{/if}
<!--the tenpay code -->
{if $key eq "0"}
{if $smarty.get.code eq "tenpay"}<input align=""type="button" value="{$lang.ctenpay}" onclick="javascript:window.open('{$lang.ctenpay_url}')"/>
{elseif $smarty.get.code eq "tenpayc2c"} <input align=""type="button" value="{$lang.ctenpay}" onclick="javascript:window.open('{$lang.ctenpayc2c_url}')"/>
{/if}
{/if}
<!--the tenpay code -->
</td>
</tr>
{/foreach}
<tr>
<td class="label">{$lang.pay_fee}</td>
<td>{if $pay.is_cod }<input name="pay_fee" type="hidden" value="{$pay.pay_fee|default:0}" />{$lang.decide_by_ship}
{else}<input name="pay_fee" type="text" value="{$pay.pay_fee|default:0}" />{/if}
</td>
</tr>
<tr>
<td class="label">{$lang.payment_is_cod}</td>
<td>{if $pay.is_cod == "1"}{$lang.yes}{else}{$lang.no}{/if}</td>
</tr>
<tr>
<td class="label">{$lang.payment_is_online}</td>
<td>{if $pay.is_online == "1"}{$lang.yes}{else}{$lang.no}{/if}</td>
</tr>
<tr align="center">
<td colspan="2">
<input type="hidden" name="pay_id" value="{$pay.pay_id}" />
<input type="hidden" name="pay_code" value="{$pay.pay_code}" />
<input type="hidden" name="is_cod" value="{$pay.is_cod}" />
<input type="hidden" name="is_online" value="{$pay.is_online}" />
<input type="submit" class="button" name="Submit" value="{$lang.button_submit}" />
<input type="reset" class="button" name="Reset" value="{$lang.button_reset}" />
</td>
</tr>
</table>
</div>
</form>
<script type="Text/Javascript" language="JavaScript">
<!--
{literal}
onload = function()
{
// 开始检查订单
startCheckOrder();
}
{/literal}
//-->
</script>
3 years ago
{include file="pagefooter.htm"}