index.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <div>
  3. <div id="bottom" class="layui-fluid noprint"
  4. style="overflow: hidden;color: #fff!important;padding: 20px 0px;background-color:#687887;min-width:1200px;font-size: 14px;">
  5. <div class="layui-row layui-col-space20 w1200p">
  6. <el-row style="margin:20px -10px;text-align:center;">
  7. <el-col :span="6">
  8. <el-image :src="logo_white" fit="contain" style="width: 240px;margin-bottom: 20px; " />
  9. <p>
  10. <el-link type="text" href="/protocol/baiyou_privacy.html" class="f-fff">隐私协议</el-link>
  11. <el-link type="text" href="/protocol/baiyou_user.html" class="ml20 f-fff">用户协议</el-link>
  12. </p>
  13. </el-col>
  14. <el-col :span="12">
  15. <p style="border-bottom:1px solid #fff;padding-bottom:15px;">
  16. <span class="layui-breadcrumb" lay-separator="|" style="visibility: visible;">
  17. <a href="https://www.eol.cn/">中国教育在线</a><span lay-separator="">|</span>
  18. <a href="http://beijing.eol.cn/">北京教育在线</a><span lay-separator="">|</span>
  19. <a href="http://www.zhaokao.net/">招考资讯网</a><span lay-separator="">|</span>
  20. <a href="https://new.qq.com/ch/edu/">腾讯教育</a><span lay-separator="">|</span>
  21. <a href="http://edu.sina.com.cn/">新浪教育</a><span lay-separator="">|</span>
  22. <a href="https://gaokao.chsi.com.cn/">阳光高考</a>
  23. </span>
  24. </p>
  25. <p style="margin-top:15px;">本站部分资源来源互联网。如有侵犯权益,请联系我们删除!备案号:<a href="https://beian.miit.gov.cn"
  26. target="_blank"
  27. style="color: #fff!important;">湘ICP备2024057119号-1</a>
  28. </p>
  29. <p style="margin-bottom:20px;">Copyright © 2020-2022 ymxzy Inc. All rights reserved. 一铭小状元 版权所有</p>
  30. <!-- <img :src="star4" height="47px" alt=""> -->
  31. </el-col>
  32. <el-col :span="6">
  33. <el-row style="margin:0 -10px">
  34. <el-col :span="6" style="padding-top:20px;padding-left:20px;text-align:right">
  35. <img style="height:32px;" :src="icon_tel">
  36. </el-col>
  37. <el-col :span="18" style="padding-top:20px;padding-left:20px;text-align:left">
  38. <p style="font-size:12px;">垂询热线:</p>
  39. <p style="font-size:18px;">4000-826-018</p>
  40. </el-col>
  41. </el-row>
  42. </el-col>
  43. </el-row>
  44. </div>
  45. </div>
  46. </div>
  47. </template>
  48. <script>
  49. export default {
  50. data() {
  51. return {
  52. logo_white: require('@/assets/logo/logo_white.png'),
  53. icon_tel: require('@/assets/images/icon_tel.png'),
  54. star4: require('@/assets/images/star4.png')
  55. }
  56. }
  57. }
  58. </script>
  59. <style scoped>
  60. p {
  61. margin: 0
  62. }
  63. </style>