Footer.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <div class="footer">
  3. <div class="wrap" style="overflow:hidden">
  4. <ul class="record">
  5. <li v-if="$store.state.systemVersion != 'lan'">
  6. <a
  7. target="_blank"
  8. href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11011402011379"
  9. ><img src="../assets/beian.png" /><span class="ml10"
  10. >京公网安备 11011402011379号</span
  11. ></a
  12. >
  13. </li>
  14. <li v-if="$store.state.systemVersion != 'lan'">
  15. <a href="javascript:;">京ICP备20000146号-2</a>
  16. </li>
  17. <li>
  18. <a href="javascript:;">Copyright© 北京决明科技有限公司</a>
  19. </li>
  20. </ul>
  21. </div>
  22. </div>
  23. </template>
  24. <script>
  25. export default {
  26. name: "Footer",
  27. };
  28. </script>
  29. <style scoped>
  30. .footer {
  31. width: 100%;
  32. background: #00CDDD;
  33. overflow: hidden;
  34. }
  35. .footer .record {
  36. display: flex;
  37. justify-content: center;
  38. }
  39. .footer .record li {
  40. line-height: 36px;
  41. margin: 0 35px;
  42. }
  43. .footer .record li a {
  44. color: #ffffff;
  45. }
  46. .footer .record img,
  47. .footer .record span {
  48. vertical-align: middle;
  49. }
  50. </style>