Browse Source

修改备案信息

zjs_project 3 years ago
parent
commit
be5808f7bb

+ 2 - 2
ElabHomeProject/src/components/bottom/bottom.html

@@ -1,8 +1,8 @@
 <div class="bottom-body" :style="{backgroundColor:blackColor?'#ffffff':'#2C2E34'}">
   <div class="bottom-left-container">
     <div class="bottom-left">
-      <p v-if="!deviceMobile" :style="{color: blackColor?'black':'white'}">COPYRIGHT © 2015-2018. All Rights Reserved. | 沪ICP备15047801号-1</p>
-      <p v-else :style="{color: blackColor?'black':'white'}">COPYRIGHT © . All Rights Reserved. | 沪ICP备15047801号-1</p>
+      <p v-if="!deviceMobile" :style="{color: blackColor?'black':'white','cursor':'pointer'}" @click="link">COPYRIGHT © 2015-2018. All Rights Reserved. | 沪ICP备15047801号</p>
+      <p v-else :style="{color: blackColor?'black':'white','cursor':'pointer'}" @click="link">COPYRIGHT © . All Rights Reserved. | 沪ICP备15047801号</p>
     </div>
   </div>
   <div class="bottom-right-container" v-if="!deviceMobile">

+ 4 - 1
ElabHomeProject/src/components/bottom/bottom.js

@@ -25,6 +25,9 @@ export default {
   },
 
   methods:{
-
+    link(){
+      window.open("https://beian.miit.gov.cn","_blank"); 
+      // window.location.href = "https://beian.miit.gov.cn";
+    },
   }
 };