liuqiang 1 year ago
parent
commit
8f7a8009d8

BIN
public/logo.png


BIN
src/assets/fonts/Inter-Black-3.otf


BIN
src/assets/fonts/Inter-Bold-4.otf


BIN
src/assets/fonts/Inter-ExtraBold-5.otf


BIN
src/assets/fonts/Inter-ExtraLight-6.otf


BIN
src/assets/fonts/Inter-Light-7.otf


BIN
src/assets/fonts/Inter-Regular-9.otf


BIN
src/assets/fonts/Inter-SemiBold-10.otf


BIN
src/assets/fonts/Inter-Thin-11.otf


BIN
src/assets/fonts/SourceHanSansCN-Bold_0.otf


BIN
src/assets/fonts/SourceHanSansCN-ExtraLight_0.otf


BIN
src/assets/fonts/SourceHanSansCN-Heavy.otf


BIN
src/assets/fonts/SourceHanSansCN-Light_0.otf


BIN
src/assets/fonts/SourceHanSansCN-Medium_0.otf


BIN
src/assets/fonts/SourceHanSansCN-Normal_0.otf


BIN
src/assets/fonts/SourceHanSansCN-Regular_0.otf


+ 12 - 6
src/assets/fonts/font.css

@@ -1,18 +1,24 @@
   @font-face {
     font-family: "Inter-Bold";
-    src: url('Inter-Bold-4.otf');
+    src: url('SourceHanSansCN-Bold_0.otf');
     font-weight: normal;
     font-style: normal;
   }
   @font-face {
     font-family: "Inter-Regular";
-    src: url('Inter-Regular-9.otf');
+    src: url('SourceHanSansCN-Regular_0.otf');
     font-weight: normal;
     font-style: normal;
   }
   @font-face {
-    font-family: "Inter-SemiBold";
-    src: url('Inter-SemiBold-10.otf');
+    font-family: "Inter-Medium";
+    src: url('SourceHanSansCN-Medium_0.otf');
+    font-weight: normal;
+    font-style: normal;
+  }
+  @font-face {
+    font-family: "Inter-LOGO";
+    src: url('logo.otf');
     font-weight: normal;
     font-style: normal;
   }
@@ -23,8 +29,8 @@
     font-style: normal;
   }
   @font-face {
-    font-family: "Inter-ExtraBold";
-    src: url('Inter-ExtraBold-5.otf');
+    font-family: "Inter-var";
+    src: url('Inter-var-2.ttf');
     font-weight: normal;
     font-style: normal;
   }

BIN
src/assets/fonts/logo.otf


+ 0 - 1
src/components/ListShow/ListShow.vue

@@ -569,7 +569,6 @@ watch(
 :deep(.el-tabs__item.is-active) {
   color: #2e6bc8 !important;
   font-weight: normal;
-  font-family: Inter-SemiBold;
 }
 
 :deep(.el-tabs__active-bar) {

+ 2 - 2
src/layout/components/DefaultPage/DefaultPage.vue

@@ -696,7 +696,7 @@ onMounted(() => {
     }
     .text1 {
       margin-left: 8px;
-      font-weight: bold;
+      font-family: Inter-Bold;
       font-size: 18px;
       color: #030102;
     }
@@ -757,6 +757,7 @@ onMounted(() => {
     display: flex;
     justify-content: center;
     align-items: center;
+    font-family:Inter-Bold;
     span {
       margin-left: 8px;
     }
@@ -938,7 +939,6 @@ onMounted(() => {
           font-size: 16px;
           color: #2e6bc8;
           text-decoration: underline;
-          font-family: Inter-SemiBold;
           cursor: pointer;
         }
 

+ 25 - 9
src/layout/components/TopMenu/TopMenu.vue

@@ -1,8 +1,9 @@
 <template>
   <div class="TopMenu">
     <div class="logo" @click="toIndex">
-    <img src="/logo.png" alt="">
-  </div>
+      <img src="/logo.png" alt="" />
+      <span class="name">AI数字文档</span>
+    </div>
     <div class="menu">
       <div class="menuList">
         <div class="oneMenu finger" @click="openTab('我的文件', '/myfile')">
@@ -31,7 +32,11 @@
       </div>
     </div>
     <div class="user">
-      <div class="AIBot hand" v-if="showAi" @click="openTab('智聚AI', '/aipage')">
+      <div
+        class="AIBot hand"
+        v-if="showAi"
+        @click="openTab('智聚AI', '/aipage')"
+      >
         <img src="@/assets/images/newIndex/bot.png" alt="" />
         <span>智聚AI</span>
       </div>
@@ -301,7 +306,7 @@ const closeOpenScanMove = () => {
 };
 let lisetenMessageTime = null;
 onMounted(() => {
-  canChatFn()
+  canChatFn();
   document.addEventListener("click", (e) => {
     if (e.target.className !== "oneMenu finger") {
       hideMoreMenu();
@@ -338,18 +343,28 @@ watchEffect(async () => {
   //   align-items: center;
 }
 .logo {
-  width: 260px;
+  width: 266px;
   height: 48px;
   cursor: pointer;
-  img{
-    width: 100%;
+  display: flex;
+  align-items: center;
+  img {
+    width: 66px;
     height: 100%;
+    margin-right: 8px;
+  }
+  .name{
+    font-size: 20px;
+    font-family: Inter-LOGO;
+    line-height: 28px;
+    color: #fff;
   }
 }
 .menu {
   width: 350px;
   height: 48px;
   position: relative;
+  font-family: Inter-Medium;
   .menuList {
     width: 100%;
     height: 100%;
@@ -361,7 +376,7 @@ watchEffect(async () => {
       span {
         color: #fff;
         font-size: 16px;
-        font-weight: bold;
+        // font-weight: bold;
       }
     }
   }
@@ -376,7 +391,7 @@ watchEffect(async () => {
     display: flex;
     font-size: 14px;
     color: #030102;
-    font-weight: 500;
+    // font-weight: 500;
     padding: 10px;
     justify-content: space-around;
     z-index: 1000000;
@@ -407,6 +422,7 @@ watchEffect(async () => {
   position: relative;
   display: flex;
   justify-content: space-around;
+  font-family: Inter-Medium;
   .clockBox {
     position: relative;
     .yuandian {

+ 1 - 1
src/layout/indexCommon.vue

@@ -1059,7 +1059,7 @@ watch(() => editableTabsValue.value, (newValue, oldValue) => {
     justify-content: space-between;
 
     &>div:first-child {
-      font-family: "Inter-SemiBold";
+      // font-family: "Inter-SemiBold";
     }
 
     &>div:first-child,

+ 0 - 1
src/views/collect/index.vue

@@ -952,7 +952,6 @@ const setIcon = (fileType) => {
 ::v-deep .el-tabs__item.is-active {
   color: #2e6bc8 !important;
   font-weight: normal;
-  font-family: Inter-SemiBold;
 }
 ::v-deep .el-tabs__active-bar {
   background-color: #2e6bc8;

+ 0 - 2
src/views/highSearch/HighSearch.vue

@@ -247,7 +247,6 @@ const closeImgPreview = () => {
     font-weight: normal;
     color: #06286c;
     line-height: 30px;
-    font-family: Inter-ExtraBold;
     -webkit-transform: skew(-10deg);
   }
 }
@@ -313,7 +312,6 @@ const closeImgPreview = () => {
         font-size: 16px;
         color: #2e6bc8;
         text-decoration: underline;
-        font-family: Inter-SemiBold;
       }
 
       .flieTime {

+ 0 - 1
src/views/login.vue

@@ -352,7 +352,6 @@ getCode();
       font-size: 16px;
       line-height: 24px;
       font-weight: bold;
-      font-family: Inter-SemiBold;
     }
     .re_checkout {
       color: #505870;

+ 0 - 2
src/views/search/index.vue

@@ -597,7 +597,6 @@ onMounted(() => {
         font-size: 16px;
         color: #2e6bc8;
         text-decoration: underline;
-        font-family: Inter-SemiBold;
       }
 
       .flieTime {
@@ -649,7 +648,6 @@ onMounted(() => {
 :deep(.el-tabs__item.is-active)  {
   color: #2e6bc8 !important;
   font-weight: normal;
-  font-family: Inter-SemiBold;
 }
 
 :deep(.el-tabs__active-bar) {