Przeglądaj źródła

修改行研产研

zs 7 miesięcy temu
rodzic
commit
c3a58c5420
2 zmienionych plików z 9 dodań i 7 usunięć
  1. 6 4
      src/views/detail/studyDetail.vue
  2. 3 3
      src/views/home/index.vue

+ 6 - 4
src/views/detail/studyDetail.vue

@@ -5,8 +5,9 @@
         <div class="info_1"></div>
         <div class="info_2">
           <div class="info_name">{{ info.name || '暂无' }}</div>
-          <div class="info_brief">
-            <div v-html="info.brief"></div>
+          <div class="info_brief">{{ info.brief || '暂无' }}</div>
+          <div class="info_content" v-if="content">
+            <div v-html="info.content"></div>
           </div>
         </div>
       </div>
@@ -15,7 +16,6 @@
 </template>
 
 <script setup>
-import { get } from 'lodash-es'
 // 接口
 import { NotesStore } from '@/store/api/platform/notes'
 const store = NotesStore()
@@ -95,7 +95,9 @@ const search = async () => {
         }
       }
       .info_brief {
-        margin: 10px 0 0 0;
+        text-align: center;
+        font-size: $global-font-size-18;
+        margin: 10px 0;
       }
     }
   }

+ 3 - 3
src/views/home/index.vue

@@ -162,8 +162,8 @@ const search = async () => {
         text-align: center;
         cursor: pointer;
         margin: 0 auto;
-        width: 360px;
-        height: 360px;
+        width: 400px;
+        height: 400px;
         z-index: 1;
         background: url(/images/homebg.png) no-repeat;
         background-size: contain;
@@ -184,7 +184,7 @@ const search = async () => {
           cursor: pointer;
           margin: auto;
           text-align: center;
-          width: 300px;
+          width: 255px;
           z-index: 10;
         }
       }