`{php $bootstrap_type = 3;} {template 'header'}
我的订单
待支付
待收货
已完成
管理收货地址
{if count($list)<=0}
您暂时没有任何订单!
{/if}
{loop $list $item}
订单编号:{$item['ordersn']} {php echo date('Y-m-d H:i', $item['createtime'])} {if $item['paytype'] == 3} {if $item['status'] == -1} 订单取消 {elseif $item['status'] < 3} 货到付款 / 未付款 {else} 已完成 {/if} {else} {if $item['status'] == -1} 订单取消 {elseif $item['status'] == 0} 未付款 {elseif $item['status'] == 1} 已付款 {elseif $item['status'] == 2} 已发货 {else} 已完成 {/if} {/if}
{if count($item['goods'])==1} {loop $item['goods'] $goods}
{$goods['marketprice']} 元{if $goods['unit']} / {$goods['unit']}{/if} {$item['total'][$goods['id']]['total']}{if $goods['unit']} {$goods['unit']}{/if}
{/loop} {else}
{loop $item['goods'] $goods} {/loop}
{/if}
共计: {if $item['dispatchprice']<=0} {$item['price']} 元 {else} {$item['price']} 元 (运费 {$item['dispatchprice']} 元) {/if} 订单详情
{/loop}
{template 'footer'} {template 'footerbar'}