www.gusucode.com > mcms手机网站系统 v3.1源码程序 > mcms_v3.1.0/upload/app_tpl_pc/default/user/tpl.order.desc.php

    <?php if(!defined('INC_MCMS')) die('No Access !');?>
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title><?php echo('订单详情-'.SITE_NAME);?></title>
    <?php require_once(assign_tpl_inc("inc.front.head.php"));?>
    <script src="<?php echo(DOMAIN_CSS);?>/libs/zy.select/jquery.select.js"></script>
    <script src="<?php echo DOMAIN_CSS.'/sty_'.SKIN.'/';?>js/ucenter.js"></script>
    <link rel="stylesheet" type="text/css" href="<?php echo(DOMAIN_CSS);?>/libs/zy.select/select.css"/>
    <script src="<?php echo(DOMAIN_CSS);?>/libs/datepicker.js"></script>
    
    <style>
        .box_content{padding:10px;}
        .sel_box,.txt_box .sel_inp,.sel_box, .txt_box{height:30px;line-height:30px;}
        .txt_box{border-radius:0;}
        .sel_list a{height:30px;line-height:30px;font-size:14px;}
        .table_lists tr th{text-align:right;}
        .table_lists tr td{text-align:left;}
    </style>
    <div class="main">
        <div class="line_10"></div>
        <div class="wrap snav">
            当前位置<em>:</em><a href="/">首页</a><em>></em>订单详情
        </div>
        <div class="line_10"></div>
        <div class="wrap clearfix">
            <div class="l mleft">
                
                    <div class="box confbg">
                        <div class="box_content">
                            <?php require_once(assign_tpl_inc("inc.center.left.php"));?>

                        </div>
                    </div>
            </div>
            <div class="r mright">
                <div class="box">
                    <div class="box_content">
                        <div class="line_20"></div>
                        <div class="info_body">
                            <h4 style="color:red;text-align:left;font-size:12px;">温馨提示:会员订单信息详情查看</h4>
                            <table class="table_lists editbox" id="user_address">
                                <tr>
                                    <th>订单号:</th>
                                    <td><?php echo $result['list'][0]['order_num_local'];?></td>
                                </tr>
                                <tr>
                                    <th>渠道订单号:</th>
                                    <td><?php echo $result['list'][0]['order_num_remote'];?></td>
                                </tr>
                                <tr>
                                    <th>原价总金额:</th>
                                    <td style="text-align:left;"><?php echo " ¥ ".number_format($result['list'][0]['pay_money_original'],2);?></td>
                                </tr>
                                <tr>
                                    <th>实际支付:</th>
                                    <td><?php echo " ¥ ".number_format($result['list'][0]['pay_money_over'],2);?></td>
                                </tr>
                                <tr>
                                    <th>支付方式:</th>
                                    <td><?php echo $V->get_field_str('pay_type',$result['list'][0]['pay_type']); ?></td>
                                </tr>
                                <tr>
                                    <th>配送方式:</th>
                                    <td style="text-align:left;"><?php echo $result['list'][0]['send_type'];?></td>
                                </tr>
                                <tr>
                                    <th>配送快递单号:</th>
                                    <td style="text-align:left"><?php echo $result['list'][0]['send_num'];?></td>
                                </tr>
                                <tr>
                                    <th>订单状态:</th>
                                    <td style="text-align:left">
                                        <?php 
                                            echo $V->get_field_str('order_status',$result['list'][0]['order_status'],'html').','.$V->get_field_str('pay_status',$result['list'][0]['pay_status'],'html').','.$V->get_field_str('send_status',$result['list'][0]['send_status'],'html');?>
                                    </td>
                                </tr>
                                <tr>
                                    <th>我的留言:</th>
                                    <td style="text-align:left"><?php echo $result['list'][0]['order_message'];?></td>
                                </tr>
                                <tr>
                                    <th>收货地址:</th>
                                    <td style="text-align:left"><?php echo $result['list'][0]['order_address']['address'];?></td>
                                </tr>
                                <tr>
                                    <th>收货人:</th>
                                    <td style="text-align:left"><?php echo $result['list'][0]['order_address']['true_name'];?></td>
                                </tr>
                                <tr>
                                    <th>联系电话:</th>
                                    <td style="text-align:left"><?php echo $result['list'][0]['order_address']['addr_phone'];?></td>
                                </tr>
                                <tr>
                                    <th>邮编:</th>
                                    <td style="text-align:left"><?php echo $result['list'][0]['order_address']['addr_postcode'];?></td>
                                </tr>
                                <tr>
                                    <th>下单时间:</th>
                                    <td style="text-align:left"><?php echo date('Y-m-d h:i:s',$result['list'][0]['create_time']);?></td>
                                </tr>
                                <tr>
                                    <th>购买商品:</th>
                                    <td style="text-align:left">
                                        <?php
                                            foreach($result['list'][0]['order_desc'] as $v) {
                                                echo '商品:'.$v['name'];
                                                echo ' , 价格:¥'.$v['price'].'元';
                                                echo ' ,数量:'.$v['num'].'<br />';
                                            }
                                        ?>
                                    </td>
                                </tr>
                            </table>
                        </div>
                        <div class="line_20"></div>
                    </div>
                </div>
            </div>
        </div>
        <div class="line_20"></div>
    </div>

    <?php require_once(assign_tpl_inc("inc.front.foot.php"));?>
    </body>
</html>