error.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="https://www.thymeleaf.org ">
  4. <head>
  5. <title>采美365网</title>
  6. <template th:replace="components/head-link"></template>
  7. <link th:href="@{/css/article/error.css(v=${version})}" rel="stylesheet" type="text/css">
  8. </head>
  9. <body>
  10. <!-- 引用头部 -->
  11. <template th:replace="components/header"></template>
  12. <input type="hidden" th:value="${labelId}" id="labelId">
  13. <input type="hidden" th:value="${typeId}" id="typeId">
  14. <input type="hidden" th:value="${pageNum}" id="pageNum">
  15. <input type="hidden" th:value="${coreServer}" id="coreServer">
  16. <input type="hidden" th:value="${agent}" id="userAgent">
  17. <!-- 404页面 -->
  18. <div style="text-align:center;background: #fff" id="errorPage">
  19. <!-- <iframe id="errorContent" src="/search_children.html"></iframe>-->
  20. <div id="errorContent">
  21. <img src="/img/base/404.png">
  22. <p>您访问的页面不存在,<span v-text="countdown"></span>秒后将自动返回首页</p>
  23. <a href="/info/center-3-1.html">返回首页</a>
  24. </div>
  25. <div class="recommend">
  26. <div class="title">相关推荐</div>
  27. <div class="page">
  28. <span v-if="recommend.prePage" class="prev" @click="getRecommend(typeId, recommend.prePage)"></span>
  29. <span v-if="recommend.nextPage" class="next" @click="getRecommend(typeId, recommend.nextPage)"></span>
  30. </div>
  31. <div class="list">
  32. <template v-for="(item, index) in recommend.list">
  33. <a :href="'/info/detail-'+item.id+'-1.html'" target="_blank" class="item" :key="index">
  34. <div class="cover"><img :src="item.image" alt="item.title"/></div>
  35. <div class="name" v-text="item.title"></div>
  36. </a>
  37. </template>
  38. </div>
  39. </div>
  40. </div>
  41. <!-- 引入底部 -->
  42. <template th:replace="components/footer"></template>
  43. <template th:replace="components/foot-link"></template>
  44. <script charset="utf-8" type="text/javascript" th:src="@{/js/article/error.js(v=${version})}"></script>
  45. </body>
  46. </html>