1b84ce5780c935d21f0a988bc5a84e6d2c9474f3.svn-base 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <div class="footer">
  3. <!-- <div class="links">
  4. <a href="http://www.jeecg.com" target="_blank">JEECG 首页</a>
  5. <a href="https://github.com/zhangdaiscott/jeecg-boot" target="_blank">
  6. <a-icon type="github"/>
  7. </a>
  8. <a href="https://ant.design/">Ant Design</a>
  9. <a href="https://vuecomponent.github.io/ant-design-vue/docs/vue/introduce-cn/">Vue Antd</a>
  10. </div>-->
  11. <div class="copyright">
  12. Copyright
  13. <a-icon type="copyright"/>
  14. 2021 <span>金田产业发展(山东)集团有限公司 出品</span>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. name: "LayoutFooter"
  21. }
  22. </script>
  23. <style lang="less" scoped>
  24. .footer {
  25. padding: 0 16px;
  26. //margin: 48px 0 24px;
  27. text-align: center;
  28. .links {
  29. margin-bottom: 8px;
  30. a {
  31. color: rgba(0, 0, 0, .45);
  32. &:hover {
  33. color: rgba(0, 0, 0, .65);
  34. }
  35. &:not(:last-child) {
  36. margin-right: 40px;
  37. }
  38. }
  39. }
  40. .copyright {
  41. color: rgba(0, 0, 0, .45);
  42. font-size: 14px;
  43. }
  44. }
  45. </style>