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.

71 lines
3.2 KiB

3 years ago
{include file="pageheader.htm"}
{insert_scripts files="../js/utils.js,listtable.js"}
<div class="list-div" style="margin-bottom: 5px">
<table id="general-table" align="center" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td colspan="2" width="100%"><a href="javascript:showNotice('noticeGoodsSN');" title="{$lang.form_notice}"><img src="images/notice.gif" width="14" height="14" border="0" alt="{$lang.form_notice}"></a><strong>请选择模板的模式:</strong><input type="radio" name="model" id="model_1" value="1" {if $shipping.print_model == 1}checked="checked"{/if} onclick="javascript:model_change('1');">代码模式&nbsp;&nbsp;&nbsp;&nbsp;<input type="radio" name="model" id="model_2" value="2" {if $shipping.print_model == 2}checked="checked"{/if} onclick="javascript:model_change('2');">所见即所得模式<br/><span class="notice-span" {if $help_open}style="display:block" {else} style="display:none" {/if} id="noticeGoodsSN">选择“代码模式”可以切换到以前版本。建议您使用“所见即所得模式”。所有模式选择后,同样在打印模板中生效。</span></td>
</tr>
<tr>
<th colspan="2" width="100%">编辑模板</th>
</tr>
<tr id="visual" {if $shipping.print_model == 1}style="display:none"{/if}>
<td colspan="2" width="100%"><!--Flash播放器 start--><iframe id="goods_desc___Frame" src="shipping.php?act=print_index&shipping={$shipping_id}" width="99%" height="675" frameborder="0" scrolling="no"></iframe><!--Flash播放器 end--></td>
</tr>
<form method="post" name="theForm" action="shipping.php?act=do_edit_print_template&shipping={$shipping.shipping_id}">
<input type="hidden" name="print_model" value="1">
<input type="hidden" name="shipping_name" value="{$shipping.shipping_name}">
<tr id="code_shipping_print" {if $shipping.print_model == 2}style="display:none"{/if}>
<td width="75%"><textarea id="shipping_print" name="shipping_print" rows="26" cols="100" >{$shipping.shipping_print|escape:html}</textarea></td>
<td align="left" valign="top" width="25%">{$lang.shipping_template_info}</td>
</tr>
<tr id="code_submit" {if $shipping.print_model == 2}style="display:none"{/if}>
<td colspan="2" align="center" width="100%"><input type="submit" value="{$lang.button_submit}" class="button" /></td>
</tr>
</form>
</table>
</div>
{insert_scripts files="validator.js"}
<script type="text/javascript">
<!--
var display_yes = (Browser.isIE) ? 'block' : '';
/**
* 切换编辑模式
*/
function model_change(type)
{
//获取表单对象
switch (type)
{
case '1': //代码模式
document.getElementById('code_shipping_print').style.display = display_yes;
document.getElementById('code_submit').style.display = display_yes;
document.getElementById('visual').style.display = 'none';
break;
case '2': //所见即所得模式
document.getElementById('code_shipping_print').style.display = 'none';
document.getElementById('code_submit').style.display = 'none';
document.getElementById('visual').style.display = display_yes;
break;
}
return true;
}
//-->
</script>
3 years ago
{include file="pagefooter.htm"}