12345678910111213141516171819202122232425262728 |
- <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>
- </div>
- </div>
- <!--搜索-->
- <div class="search" id="topSearch">
- <input class="keyword" type="text" placeholder="请输入关键词" />
- <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="${spiServer}" id="spiServer"><input type="hidden" th:value="${coreServer}" id="coreServer">
- <input type="hidden" th:value="${agent}" id="userAgent">
- </header>
|