liyongli 1 год назад
Родитель
Сommit
aeae371da1

+ 4 - 3
src/view/allMedia/analysis_detail.vue

@@ -2,7 +2,7 @@
   <el-scrollbar class="analysis_detail">
     <div class="title" v-text="raw.title || ''"></div>
     <div class="subtitle">
-      <el-icon><Clock /></el-icon>
+      <el-icon :size="14"><Clock /></el-icon>
       {{ raw.publishTime }}
       <span style="vertical-align: middle;">来源:</span>
       <span style="color: #22ac38;vertical-align: middle;" v-text="raw.sourceWebsite"> </span>
@@ -14,7 +14,8 @@
 <script setup>
 import { ref } from 'vue';
 const raw = ref({});
-raw.value =   JSON.parse(localStorage.getItem('analysis_detail')|| '{}');
+raw.value = JSON.parse(localStorage.getItem('analysis_detail')|| '{}');
+document.title = raw.value.title;
 </script>
 
 <style>
@@ -45,7 +46,7 @@ raw.value =   JSON.parse(localStorage.getItem('analysis_detail')|| '{}');
   font-weight: 500;
   height: 40px;
   line-height: 40px;
-  font-size: 12px;
+  font-size: 14px;
   margin-bottom: 2em;
   text-align: center;
 }

+ 1 - 1
src/view/allMedia/components/proofread_errors.vue

@@ -173,7 +173,7 @@ function resumeText(item, index, pindex) {
   border-left: 6px solid;
   margin-bottom: 1em;
   padding: 5px 35px 5px 15px;
-  font-size: 12px;
+  font-size: 16px;
   line-height: 1.5em;
   background-color: #f9fafc;
 }