123456789101112131415161718192021222324252627282930 |
- <header class="header" xmlns:th="http://www.w3.org/1999/xhtml">
- <!--导航栏-->
- <div class="nav">
- <div class="h5-head">
- <a class="index" href="/"><img src="/img/info/mall.png">商城</a>
- <a class="hotWord" href="javascript:void(0);">热搜词</a>
- </div>
- <div class="logo">
- <a href="/" target="_blank"><img src="/img/info/nav-logo.png"/></a>
- </div>
- <div class="type">
- <div>
- <!-- <a class="home" href="/" target="_blank">商城</a> -->
- <a th:each="type: *{articleType}" th:text="${type.name}" th:href="'/info/center-'+${type.id}+'-1.html'" th:class="${typeId==type.id}?'typeBtn current':'typeBtn'" th:typeId="${type.id}"></a>
- <a class="typeBtn" href="/document/beauty-archive.html" target="_blank">美业资料</a>
- <!-- <a class="typeBtn" href="/encyclopedia/product.html" target="_blank">采美百科</a> -->
- </div>
- </div>
- <!--搜索-->
- <div class="search auto-input" id="topSearch">
- <input class="keyword" type="text" placeholder="请输入关键词" autocomplete="off" />
- <a class="searchBtn icon" href="javascript:void(0);"></a>
- </div>
- </div>
- <input type="hidden" th:value="${labelId}" id="labelId">
- <input type="hidden" th:value="${typeId}" id="typeId">
- <input type="hidden" th:value="${pageNum}" id="pageNum">
- <input type="hidden" th:value="${coreServer}" id="coreServer">
- <input type="hidden" th:value="${agent}" id="userAgent">
- </header>
|