logistics_information.html 739 字节
<include file="public@header"/>
</head>
<body>
<div class="wrap js-check-wrap">
    <ul class="nav nav-tabs">
        <li><a href="{:url('Orderscourier/order_list')}">平台订单列表</a></li>
        <li class="active"><a href="#">物流信息</a></li>
    </ul>
    <table class="table table-bordered">
        <thead>
        <tr>
            <th>时间</th>
            <th>城市</th>
            <th>状态</th>
        </tr>
        </thead>
        <tbody>
        <volist name="logistics" id="vo">
            <tr>
                <td>{$vo.AcceptTime}</td>
                <td>{$vo.AcceptStation}</td>
                <td>{$vo.Remark}</td>
            </tr>
        </volist>
        </tbody>
    </table>
</div>
</body>
</html>