|
@@ -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;
|
|
|
}
|