index.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <div class="ivu-global-footer i-copyright">
  3. <div class="ivu-global-footer-links">
  4. <a :href="item.href" target="_blank" v-for="(item, index) in links" :key="index">{{ item.title }}</a>
  5. </div>
  6. <div class="ivu-global-footer-copyright" v-if="copyright">{{ copyright }}</div>
  7. <div class="ivu-global-footer-copyright" v-else>
  8. Copyright © 2014-2023
  9. <a href="https://www.crmeb.com" target="_blank">{{ version }}</a>
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. import { getCrmebCopyRight } from '@/api/system';
  15. export default {
  16. name: 'i-copyright',
  17. data() {
  18. return {
  19. links: [
  20. {
  21. title: '官网',
  22. key: '官网',
  23. href: 'https://www.crmeb.com',
  24. },
  25. {
  26. title: '社区',
  27. key: '社区',
  28. href: 'http://q.crmeb.com',
  29. },
  30. {
  31. title: '文档',
  32. key: '文档',
  33. href: 'http://doc.crmeb.com',
  34. },
  35. ],
  36. copyright: 'Copyright © 2014-2023',
  37. version: '',
  38. };
  39. },
  40. created() {
  41. this.getVersion();
  42. },
  43. methods: {
  44. getVersion() {
  45. this.version = this.$store.state.userInfo.version;
  46. getCrmebCopyRight().then((res) => {
  47. this.copyright = res.data.copyrightContext;
  48. });
  49. },
  50. },
  51. };
  52. </script>
  53. <style lang="less">
  54. .ivu-global-footer {
  55. /* margin: 48px 0 24px 0; */
  56. /* padding: 0 16px; */
  57. margin: 5px 0px;
  58. text-align: center;
  59. box-sizing: border-box;
  60. }
  61. .i-copyright {
  62. flex: 0 0 auto;
  63. }
  64. .ivu-global-footer-links {
  65. margin-bottom: 5px;
  66. }
  67. .ivu-global-footer-links a:not(:last-child) {
  68. margin-right: 40px;
  69. }
  70. .ivu-global-footer-links a {
  71. font-size: 14px;
  72. color: #808695;
  73. transition: all 0.2s ease-in-out;
  74. }
  75. .ivu-global-footer-copyright {
  76. color: #808695;
  77. font-size: 14px;
  78. }
  79. .ivu-global-footer-copyright a {
  80. color: #808695;
  81. }
  82. </style>