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>采美365网</title>
- <template th:replace="components/head-link"></template>
- <link th:href="@{/css/article/error.css(v=${version})}" rel="stylesheet" type="text/css">
- </head>
- <body>
- <!-- 引用头部 -->
- <template th:replace="components/header"></template>
- <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">
- <!-- 404页面 -->
- <div style="text-align:center;background: #fff" id="errorPage">
- <!-- <iframe id="errorContent" src="/search_children.html"></iframe>-->
- <div id="errorContent">
- <img src="/img/base/404.png">
- <p>您访问的页面不存在,<span v-text="countdown"></span>秒后将自动返回首页</p>
- <a href="/info/center-3-1.html">返回首页</a>
- </div>
- <div class="recommend">
- <div class="title">相关推荐</div>
- <div class="page">
- <span v-if="recommend.prePage" class="prev" @click="getRecommend(typeId, recommend.prePage)"></span>
- <span v-if="recommend.nextPage" class="next" @click="getRecommend(typeId, recommend.nextPage)"></span>
- </div>
- <div class="list">
- <template v-for="(item, index) in recommend.list">
- <a :href="'/info/detail-'+item.id+'-1.html'" target="_blank" class="item" :key="index">
- <div class="cover"><img :src="item.image" alt="item.title"/></div>
- <div class="name" v-text="item.title"></div>
- </a>
- </template>
- </div>
- </div>
- </div>
- <!-- 引入底部 -->
- <template th:replace="components/footer"></template>
- <template th:replace="components/foot-link"></template>
- <script charset="utf-8" type="text/javascript" th:src="@{/js/article/error.js(v=${version})}"></script>
- </body>
- </html>
|