| 1234567891011121314151617 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:mo="https://gitee.com/aun/Timo">
- <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})">
- <link rel="stylesheet" th:href="@{/lib/zTree_v3/css/zTreeStyle/zTreeStyle.css}" type="text/css">
- </head>
- <body class="timo-layout-page">
- <div class="layui-card">
- <div class="layui-bg-gray" style="padding: 30px;">
- <div class="layui-card-body">
- <p th:text="${msg}"></p>
- </div>
- </div>
- </div>
- <script th:replace="/common/template :: script"></script>
- </body>
- </html>
|