| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <template>
- <div class="ivu-global-footer i-copyright">
- <div class="ivu-global-footer-links">
- <a :href="item.href" target="_blank" v-for="(item, index) in links" :key="index">{{ item.title }}</a>
- </div>
- <div class="ivu-global-footer-copyright" v-if="copyright">{{ copyright }}</div>
- <div class="ivu-global-footer-copyright" v-else>
- Copyright © 2014-2023
- <a href="https://www.crmeb.com" target="_blank">{{ version }}</a>
- </div>
- </div>
- </template>
- <script>
- import { getCrmebCopyRight } from '@/api/system';
- export default {
- name: 'i-copyright',
- data() {
- return {
- links: [
- {
- title: '官网',
- key: '官网',
- href: 'https://www.crmeb.com',
- },
- {
- title: '社区',
- key: '社区',
- href: 'http://q.crmeb.com',
- },
- {
- title: '文档',
- key: '文档',
- href: 'http://doc.crmeb.com',
- },
- ],
- copyright: 'Copyright © 2014-2023',
- version: '',
- };
- },
- created() {
- this.getVersion();
- },
- methods: {
- getVersion() {
- this.version = this.$store.state.userInfo.version;
- getCrmebCopyRight().then((res) => {
- this.copyright = res.data.copyrightContext;
- });
- },
- },
- };
- </script>
- <style lang="less">
- .ivu-global-footer {
- /* margin: 48px 0 24px 0; */
- /* padding: 0 16px; */
- margin: 5px 0px;
- text-align: center;
- box-sizing: border-box;
- }
- .i-copyright {
- flex: 0 0 auto;
- }
- .ivu-global-footer-links {
- margin-bottom: 5px;
- }
- .ivu-global-footer-links a:not(:last-child) {
- margin-right: 40px;
- }
- .ivu-global-footer-links a {
- font-size: 14px;
- color: #808695;
- transition: all 0.2s ease-in-out;
- }
- .ivu-global-footer-copyright {
- color: #808695;
- font-size: 14px;
- }
- .ivu-global-footer-copyright a {
- color: #808695;
- }
- </style>
|