浏览代码

后台版权信息显示优化

evoxwht 2 年之前
父节点
当前提交
ceff223522
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      template/admin/src/components/copyright/index.vue

+ 2 - 2
template/admin/src/components/copyright/index.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="ivu-global-footer i-copyright">
-    <div class="ivu-global-footer-links">
+    <div class="ivu-global-footer-links" v-if="!copyright">
       <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>
@@ -33,7 +33,7 @@ export default {
           href: 'http://doc.crmeb.com',
         },
       ],
-      copyright: 'Copyright © 2014-2023',
+      copyright: '',
       version: '',
     };
   },