order_item.html 2.4 KB
<!DOCTYPE html>
<html lang="en">

<head>
    <meta name="viewport" content="user-scalable=0, width=device-width, initial-scale=1.0,  minimum-scale=1.0, maximum-scale=1.0">
    <meta content="telephone=no" name="format-detection" />
    <meta content="black" name="apple-mobile-web-app-status-bar-style" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="stylesheet" href="../css_an/common.css">
    <link rel="stylesheet" href="../css_an/order_item.css">
    <title>一步物流-货物</title>
</head>

<body class="orderItemPage">
    <div class="m-page">
        <!-- header -->
        <header class="m-header">
            <a href="order.html" class="lt-bar"><i class="m-icon icon-title_fanhui"></i></a>
            <div class="head">
                <h1>货物</h1>
            </div>
        </header>
        <div class="m-content">
            <div class="items">
                <table class="m-table">
                    <colgroup>
                        <col width="38%">
                            <col width="38%">
                                <col width="24%">
                    </colgroup>
                    <thead>
                        <tr>
                            <th>货物类型</th>
                            <th>重量/吨</th>
                            <th>体积/方</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td>机械</td>
                            <td>61</td>
                            <td>1000</td>
                        </tr>
                        <tr>
                            <td>农副果蔬</td>
                            <td>1000</td>
                            <td>1000</td>
                        </tr>
                        <tr>
                            <td>矿产</td>
                            <td>823</td>
                            <td>245</td>
                        </tr>
                    </tbody>
                    <tfoot>
                        <tr>
                            <td class="font-red">总计</td>
                            <td class="font-red">2000</td>
                            <td class="font-red">3040</td>
                        </tr>
                    </tfoot>
                </table>
            </div>
        </div>
    </div>
    <script src="order_item.js"></script>
</body>

</html>