marketing.html 549 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:th="http://www.thymeleaf.org">
  4. <head th:replace="common::header(~{::title},~{::link})">
  5. <title>营销管理</title>
  6. <link th:href="${staticHost+'/admin/marketing.css'}" rel="stylesheet">
  7. </head>
  8. <body>
  9. <div id="root"></div>
  10. <div th:replace="common::footer(~{::script})">
  11. <script type="text/javascript" th:src="${staticHost+'/vendors.js'}"></script>
  12. <script type="text/javascript" th:src="${staticHost+'/admin/marketing.js'}"></script>
  13. </div>
  14. </body>
  15. </html>