<?php

if (!function_exists('tpl_modifier_region')) {
    require CORE_DIR . '/admin/smartyplugin/modifier.region.php';
}
?>
<table border="0" cellpadding="0" cellspacing="0" > <tr> <th>姓名:</th><td><?php 
echo $this->_vars['the_dly_center']['uname'];
?>
</td> <th>地区:</th><td><?php 
echo tpl_modifier_region($this->_vars['the_dly_center']['region']);
?>
</td> </tr> <tr> <th>邮编:</th><td><?php 
echo $this->_vars['the_dly_center']['zip'];
?>
</td> <th>地址:</th><td><?php 
echo $this->_vars['the_dly_center']['address'];
?>
</td> </tr> <tr> <th>手机:</th><td><?php 
echo $this->_vars['the_dly_center']['cellphone'];
?>
</td> <th>电话:</th><td><?php 
echo $this->_vars['the_dly_center']['phone'];
?>
</td> </tr> </table>
if ($this->_vars['trading']['receiver']['addrlist']) {
    ?>
 <ul class='list receiver-sel'> <?php 
    foreach ((array) $this->_vars['trading']['receiver']['addrlist'] as $this->_vars['iloop'] => $this->_vars['addr']) {
        ?>
 <li> <input type="radio" name="delivery[addr_id]" value="<?php 
        echo $this->_vars['addr']['addr_id'];
        ?>
"<?php 
        if ($this->_vars['addr']['def_addr']) {
            ?>
 checked="checked"<?php 
        }
        ?>
><?php 
        echo tpl_modifier_region($this->_vars['addr']['addr_region']);
        echo $this->_vars['addr']['addr_label'];
        ?>
 &nbsp;<a href="javascript:void(0)" class="lnk addredit">编辑</a> </li> <?php 
    }
    ?>
 <li> <input type="radio" name="delivery[addr_id]" value="0">其他收货地址 </li> </ul> <div id="checkout-recaddr" style='display:none'></div> <?php 
} else {
    ?>
 <div id='checkout-recaddr'> <?php 
    $_tpl_tpl_vars = $this->_vars;
    echo $this->_fetch_compile_include("shop:common/rec_addr.html", array());
    $this->_vars = $_tpl_tpl_vars;
    unset($_tpl_tpl_vars);
    ?>
 </div> <?php