Browse Source

feat: 头部导航添加gitee fork 图片

wu.jian2 1 year ago
parent
commit
ca4a5c0e09
1 changed files with 20 additions and 0 deletions
  1. 20 0
      data-room-ui/packages/Layout/BigScreenHomeLayout/index.vue

+ 20 - 0
data-room-ui/packages/Layout/BigScreenHomeLayout/index.vue

@@ -15,6 +15,16 @@
           @change="changeTab"
         />
       </div>
+      <a
+        class="fork-me-on-gitee"
+        href="https://gitee.com/gcpaas/DataRoom"
+        target="_blank"
+      >
+        <img
+          src="https://gitee.com/gcpaas/DataRoom/widgets/widget_1.svg?color=007bff"
+          alt="Fork me on Gitee"
+        >
+      </a>
     </header>
     <div class="big-screen-router-view-wrap">
       <keep-alive>
@@ -197,4 +207,14 @@ export default {
     -webkit-background-clip: text;
   }
 }
+.fork-me-on-gitee{
+  position: absolute;
+  top: 0;
+  right: 0;
+  z-index: 999;
+  img{
+    width: 120px;
+    height: 120px;
+  }
+}
 </style>