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.

36 lines
1014 B

3 years ago
<!-- $Id: shipping_list.htm 17043 2010-02-26 10:40:02Z sxc_shop $ -->
{include file="pageheader.htm"}
{insert_scripts files="../js/utils.js,listtable.js"}
<!-- start payment list -->
<div class="list-div" id="listDiv">
<table cellspacing='0' cellpadding='0'>
<tr>
<th>配送方式</th>
<th>配送方式描述</th>
<th>{$lang.handler}</th>
</tr>
{foreach from=$shipping_list item=shipping}
{if $shipping.shipping_id==$seller_shopinfo.shipping_id}
<tr>
<td class="first-cell" nowrap="true">{$shipping.shipping_name}</td>
<td>{$shipping.shipping_desc}</td>
<td nowrap="true"><a href="warehouse.php?act=tpl_list&shipping_id={$shipping.shipping_id}">设置仓库运费模板</a></td>
</tr>
{/if}
{/foreach}
</table>
</div>
<!-- end payment list -->
<script type="Text/Javascript" language="JavaScript">
<!--
{literal}
onload = function()
{
// 开始检查订单
startCheckOrder();
}
{/literal}
//-->
</script>
3 years ago
{include file="pagefooter.htm"}