welcome.html 810 Bytes
Newer Older
qinhu's avatar
qinhu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>OXO-店铺-金额统计</title>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
    <style>
        body {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        #welcome {
            text-align: center;
        }
    </style>
</head>
<body>
    <div id="welcome">
        <table border="1">
            <tr>
                <th>聚合支付</th>
                <th>现金</th>
                <th>优惠</th>
            </tr>
            <tr>
                <td th:text="${aggregate}"></td>
                <td th:text="${money}"></td>
                <th th:text="${discount}"></th>
            </tr>
        </table>
    </div>
</body>
</html>