Răsfoiți Sursa

feat:新增教师登录跳转按钮

zhubo 3 ani în urmă
părinte
comite
823f6fc63e
1 a modificat fișierele cu 37 adăugiri și 2 ștergeri
  1. 37 2
      components/home/header.vue

+ 37 - 2
components/home/header.vue

@@ -90,6 +90,7 @@
             </li>
           </ul>
         </div>
+        <div :class="['h-btn', headWhite && 'blue']" @click="jumpTeach">教师登录</div>
         <!-- <div class="h-right">
           <div class="h-login btn">登录</div>
           <div class="h-regist btn">注册</div>
@@ -128,6 +129,10 @@ export default {
     this.handleRouterActive();
   },
   methods: {
+    jumpTeach() {
+      // window.location.href = "https://luojigou.vip/teacher_lib/#/";
+      window.open("https://luojigou.vip/teacher_lib/#/");
+    },
     handleScroll() {
       let scrollTop =
         window.pageYOffset ||
@@ -258,6 +263,7 @@ export default {
   }
 
   .index-header-box {
+    position: relative;
     height: 72px;
     display: flex;
     align-items: center;
@@ -279,9 +285,14 @@ export default {
   .i-h-nav {
     display: flex;
     align-items: center;
+    position: absolute;
+    left: 50%;
+    top: 50%;
+    transform: translate(-50%, -50%);
     height: 72px;
     font-size: 15px;
-    margin-left: 100px;
+    white-space: nowrap;
+    //margin-left: 70px;
   }
 
   .h-nav-list {
@@ -292,7 +303,7 @@ export default {
     li {
       position: relative;
       display: inline-block;
-      padding: 0 50px;
+      padding: 0 40px;
       line-height: 72px;
       box-sizing: border-box;
       font-size: 15px;
@@ -432,5 +443,29 @@ export default {
       }
     }
   }
+
+  .h-btn {
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    position: absolute;
+    right: 0;
+    top: 50%;
+    transform: translateY(-50%);
+    width: 108px;
+    height: 40px;
+    background: #FFFFFF;
+    border-radius: 26px;
+    font-size: 15px;
+    font-family: PingFangSC-Regular, PingFang SC;
+    font-weight: 400;
+    color: #0D0827;
+    cursor: pointer;
+  }
+
+  .blue {
+    background-color: #236CFA;
+    color: #fff;
+  }
 }
 </style>