Explorar el Código

联合丽格V1.0.2

zhengjinyi hace 2 años
padre
commit
9680ab7520

+ 1 - 1
src/main/resources/static/js/article/common.js

@@ -51,7 +51,7 @@ var articleSide = new Vue({
         },
     },
     mounted: function () {
-        var _self = this;
+        const _self = this;
         this.typeId = $("#typeId").val()*1;
         this.labelId = $("#labelId").val()*1;
         // this.getLabels();

+ 19 - 0
src/main/resources/static/js/base.js

@@ -319,6 +319,25 @@ var globalHead = new Vue({
         this.initAuthInputComplete();
     }
 });
+// 底部
+var globalFot = new Vue({
+    el: '#globalFot',
+    data: {
+
+    },
+    computed:{
+        copyrightYear(){
+            let date = new Date()
+            return date.getFullYear()
+        }
+    },
+    methods:{
+
+    },
+    mounted(){
+
+    }
+})
 // 初始化效果
 $(function(){
     // PC,H5切换时刷新

+ 8 - 1
src/main/resources/templates/article/components/article-footer.html

@@ -17,7 +17,7 @@
             </span>
         </p>
         <p>
-            <span>Copyright © 2015-2022 CAIMEI365.com All Rights Reserved.</span><span>深圳市采美网络信息有限公司</span>
+            <span>Copyright © 2014  -<span id="copyrightYear"></span> CAIMEI365.com All Rights Reserved.</span><span>深圳市采美网络信息有限公司</span>
             <span>
                 <!-- CNZZ统计 start -->
                 <script type="text/javascript">document.write(unescape("%3Cspan id='cnzz_stat_icon_1279558759'%3E%3C/span%3E%3Cscript src='https://s9.cnzz.com/z_stat.php%3Fid%3D1279558759%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));</script>
@@ -26,3 +26,10 @@
         </p>
     </div>
 </div>
+<script charset="utf-8" type="text/javascript" src="/lib/jquery-3.6.0.min.js"></script>
+<script>
+    $(function () {
+        let date = new Date()
+        $('#copyrightYear').text( date.getFullYear())
+    })
+</script>

+ 3 - 2
src/main/resources/templates/components/footer.html

@@ -1,4 +1,4 @@
-<footer xmlns:th="http://www.w3.org/1999/xhtml">
+<footer id="globalFot" xmlns:th="http://www.w3.org/1999/xhtml" v-cloak>
     <div class="footTop">
         <div class="wrap mf">
             <span class="icon mIcon mfi">品类丰富 优质服务</span>
@@ -73,7 +73,8 @@
                     </span>
                 </p>
                 <p>
-                    <span>Copyright © 2015-2022 CAIMEI365.com All Rights Reserved.</span><span>深圳市采美网络信息有限公司</span>
+                    <span>Copyright © 2014-{{ copyrightYear }} CAIMEI365.com All Rights Reserved.</span>
+                    <span>深圳市采美网络信息有限公司</span>
                     <span>
                         <!-- CNZZ统计 start 只www.caimei365.com下初始化-->
                         <script type="text/javascript">

+ 9 - 1
src/main/resources/templates/document/components/beautyIndustry-footer.html

@@ -16,10 +16,18 @@
             </span>
         </p>
         <p>
-            <span>Copyright © 2015-2022 CAIMEI365.com All Rights Reserved.</span><span>深圳市采美网络信息有限公司</span>
+            <span>Copyright © 2014 -<span id="copyrightYear"></span> CAIMEI365.com All Rights Reserved.</span><span>深圳市采美网络信息有限公司</span>
             <span>
                 <script type="text/javascript">document.write(unescape("%3Cspan id='cnzz_stat_icon_1279558759'%3E%3C/span%3E%3Cscript src='https://s9.cnzz.com/z_stat.php%3Fid%3D1279558759%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));</script>
             </span>
         </p>
     </div>
+
 </div>
+<script charset="utf-8" type="text/javascript" src="/lib/jquery-3.6.0.min.js"></script>
+<script>
+    $(function () {
+        let date = new Date()
+        $('#copyrightYear').text( date.getFullYear())
+    })
+</script>

+ 1 - 1
src/main/resources/templates/document/details.html

@@ -56,7 +56,7 @@
     <div class="document-footer">
         <div class="wrap copyright clear">
             <div class="item icon mIcon">
-                <p><span>Copyright © 2015-2021 CAIMEI365.com All Rights Reserved.</span><span>深圳市采美网络信息有限公司</span></p>
+                <p><span>Copyright © 2014 - 2023 CAIMEI365.com All Rights Reserved.</span><span>深圳市采美网络信息有限公司</span></p>
                 <p><span>粤B1-20160129 备案号 <a href="https://beian.miit.gov.cn" target="_blank" rel="nofollow" style="color:#FFF;text-decoration:underline;">粤ICP备14019824号</a></span><span>中华人民共和国增值电信业务经营许可证</span></p>
             </div>
         </div>

+ 1 - 1
src/main/resources/templates/document/list.html

@@ -57,7 +57,7 @@
     <div class="document-footer">
         <div class="wrap copyright clear">
             <div class="item icon mIcon">
-                <p><span>Copyright © 2015-2021 CAIMEI365.com All Rights Reserved.</span><span>深圳市采美网络信息有限公司</span></p>
+                <p><span>Copyright © 2014 - 2023 CAIMEI365.com All Rights Reserved.</span><span>深圳市采美网络信息有限公司</span></p>
                 <p><span>粤B1-20160129 备案号 <a href="https://beian.miit.gov.cn" target="_blank" rel="nofollow" style="color:#FFF;text-decoration:underline;">粤ICP备14019824号</a></span><span>中华人民共和国增值电信业务经营许可证</span></p>
             </div>
         </div>

+ 1 - 1
src/main/resources/templates/document/more-content.html

@@ -55,7 +55,7 @@
     <div class="document-footer">
         <div class="wrap copyright clear">
             <div class="item icon mIcon">
-                <p><span>Copyright © 2015-2021 CAIMEI365.com All Rights Reserved.</span><span>深圳市采美网络信息有限公司</span></p>
+                <p><span>Copyright © 2014 - 2023 CAIMEI365.com All Rights Reserved.</span><span>深圳市采美网络信息有限公司</span></p>
                 <p><span>粤B1-20160129 备案号 <a href="https://beian.miit.gov.cn" target="_blank" rel="nofollow" style="color:#FFF;text-decoration:underline;">粤ICP备14019824号</a></span><span>中华人民共和国增值电信业务经营许可证</span></p>
             </div>
         </div>