|
@@ -19,7 +19,9 @@
|
|
|
<div class="article-box">
|
|
|
<div class="artricle-inner" :style="{background:bgColorList[activeIndex].contentInnerBg}">
|
|
|
<!-- 文章 -->
|
|
|
- <div class="atricle-data"></div>
|
|
|
+ <div class="atricle-data">
|
|
|
+ <normal-model :titleFontsize="wordFontsize+30" :wordFontsize="wordFontsize"></normal-model>
|
|
|
+ </div>
|
|
|
<!-- 词汇表 -->
|
|
|
<div class="glossary-box" :style="{borderTopColor:bgColorList[activeIndex].contentBg}">
|
|
|
<div class="title" :style="{color:bgColorList[activeIndex].glossaryTitle}">
|
|
@@ -72,6 +74,7 @@ import NavBar from "../../components/common/NavBar.vue"
|
|
|
import NewWordList from './components/NewWordList.vue';
|
|
|
import PhraseList from './components/PhraseList.vue';
|
|
|
import AnnotationList from './components/AnnotationList.vue'
|
|
|
+import NormalModel from "./components/NormalModel.vue"
|
|
|
import * as echarts from "echarts";
|
|
|
export default {
|
|
|
name: 'articleDetail',
|
|
@@ -83,7 +86,8 @@ export default {
|
|
|
NavBar,
|
|
|
NewWordList,
|
|
|
PhraseList,
|
|
|
- AnnotationList
|
|
|
+ AnnotationList,
|
|
|
+ NormalModel
|
|
|
},
|
|
|
data(){
|
|
|
return{
|