GlobalFooter.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. 2019 <span>JEECG开源社区 出品</span> -->
  15. 上海萃颠信息科技有限公司出品
  16. </div>
  17. </div>
  18. </template>
  19. <script>
  20. export default {
  21. name: 'LayoutFooter'
  22. }
  23. </script>
  24. <style lang="less" scoped>
  25. .footer {
  26. padding: 0 16px;
  27. margin: 0 0 40px 0;
  28. text-align: center;
  29. .links {
  30. margin-bottom: 8px;
  31. a {
  32. color: rgba(0, 0, 0, 0.45);
  33. &:hover {
  34. color: rgba(0, 0, 0, 0.65);
  35. }
  36. &:not(:last-child) {
  37. margin-right: 40px;
  38. }
  39. }
  40. }
  41. .copyright {
  42. color: rgba(0, 0, 0, 0.45);
  43. font-size: 14px;
  44. }
  45. }
  46. </style>