123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="https://www.thymeleaf.org ">
- <head>
- <title th:text="'采美365网-'+${pageData.title}"></title>
- <meta http-equiv="keywords" th:content="${pageData.keywords}">
- <meta http-equiv="description" th:content="${pageData.description}">
- <template th:replace="components/headLink"></template>
- <link th:href="@{/css/single-page/topic.css(v=${version})}" rel="stylesheet" type="text/css">
- </head>
- <body>
- <!-- 引用头部 -->
- <template th:replace="components/header"></template>
- <!-- 二级页面 -->
- <div id="topicPage">
- <div class="pageTop">
- <img th:src="${pageData.image}">
- <p th:utext="${pageData.content}"></p>
- </div>
- <div class="wrap">
- <div class="pageFloor" v-for="floor in floorDatas">
- <div class="title" v-text="floor.title"></div>
- <ul class="content clear">
- <li v-for="item in floor.floorData">
- <a :href="item.link">
- <img :src="item.image">
- <span v-text="item.title"></span>
- </a>
- </li>
- </ul>
- </div>
- </div>
- <div class="contactBox">
- <div class="tit"><span>加入正品联盟</span></div>
- <div class="cont">
- <span class="icon mIcon call">0755-22907771转806<br>15338851365</span>
- <span class="icon mIcon phone">产品设备:18948339365<br>商务合作:17318032647</span>
- </div>
- </div>
- </div>
- <!-- 引入底部 -->
- <template th:replace="components/footer"></template>
- <template th:replace="components/footLink"></template>
- <script charset="utf-8" type="text/javascript" th:src="@{/js/single-page/topic.js(v=${version})}"></script>
- </body>
- </html>
|