<!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>