2 Commits bdef6ce3e9 ... 2ab8ae753f

Author SHA1 Message Date
  yufan 2ab8ae753f Merge branch 'master' of http://139.224.55.203:10080/yufan/suqian_pc 4 months ago
  yufan b224fd3f7e fix 版权 4 months ago
1 changed files with 4 additions and 2 deletions
  1. 4 2
      src/layout/Footer.vue

+ 4 - 2
src/layout/Footer.vue

@@ -28,7 +28,7 @@
   </div>
   <div class="box"></div>
   <div class="main">
-    <div class="content">
+    <div class="content" @click="toGov">
       {{ Copyright }}
     </div>
   </div>
@@ -36,7 +36,9 @@
 
 <script setup lang="ts">
   const Copyright = import.meta.env.VITE_APP_COPYRIGHT;
-
+  const toGov = () => {
+    window.open('https://beian.miit.gov.cn', '_blank');
+  };
   const openwindown = (url) => {
     window.open(url);
   };