| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 | {extend name="common/common2" /}{block name="main"}<div class="row">    <div class="col-sm-12">        <div class="ibox float-e-margins">            <div class="ibox-content">                <table class="table table-bordered">                    <tbody>                    <tr>                        <th style="width:120px ">订单号</th><td>{$info['order_sn']}</td>                    </tr>                    <tr>                        <th>申请退款金额</th><td>{$info['amount']}</td>                    </tr>                    <tr>                        <th>申请人</th><td>{$info['user_name']}</td>                    </tr>                    <tr>                        <th>申请原因</th><td>{$info['reason']}</td>                    </tr>                    <tr>                        <th>时间</th><td>{$info['create_time']}</td>                    </tr>                   {if $info.status >0}                    <tr>                        <th>处理人</th><td>{$info['deal_user_name']}</td>                    </tr>                    <tr>                        <th>处理时间</th><td>{$info['deal_time']}</td>                    </tr>                    {/if}                    </tbody>                </table>            </div>            <div class="ibox-content">                <table class="table table-bordered">                    <thead>                    <tr>                        <th>图片</th>                        <th>商品名称</th>                        <th>价格</th>                        <th>退款数量</th>                        <th>实际退款金额</th>                        <th>备注</th>                        <th>状态</th>                    </tr>                    </thead>                    <tbody>                    <tr>                        <td><img src="{$info['goods']['img']}" alt="" onclick="open_img(this)" style="width: 40px;"  ></td>                        <td>{$info['goods']['title']}</td>                        <td>{$info['goods']['price']}</td>                        <td>{$info['goods']['num']}</td>                        <td>{$info['money']}</td>                        <td>{$info['remark']}</td>                        <td>{$info['statusName']}</td>                    </tr>                    </tbody>                </table>            </div>        </div>    </div></div>{/block}
 |