|
@@ -20,7 +20,7 @@
|
|
|
<div class="artricle-inner" :style="{background:bgColorList[activeIndex].contentInnerBg}">
|
|
|
<!-- 文章 -->
|
|
|
<div class="atricle-data">
|
|
|
- <normal-model :titleFontsize="wordFontsize+30" :wordFontsize="wordFontsize" :colorObj="bgColorList[activeIndex]" :articleType="articleType" :style="{'padding':'0 40px'}" v-if="menuType==='original'"></normal-model>
|
|
|
+ <normal-model :titleFontsize="wordFontsize+30" :wordFontsize="wordFontsize" :colorObj="bgColorList[activeIndex]" :articleType="articleType" :style="{'padding':'0 40px'}" v-if="menuType==='original'" :articleInfo="articleInfo"></normal-model>
|
|
|
<div class="article-btn">
|
|
|
<div class="left">
|
|
|
<span :class="['support colloct-article',!noRead?'active':'']" @click="changeStatus('noRead')"><svg-icon icon-class="like-line"></svg-icon>2847</span>
|
|
@@ -589,7 +589,7 @@ export default {
|
|
|
var option;
|
|
|
let newdata = JSON.parse(JSON.stringify(this.articleInfo.art_corpus_data.artStatInfo.vocabVlLevelItems));
|
|
|
newdata.forEach((item) => {
|
|
|
- let percent = item.vocabPercent;
|
|
|
+ let percent = item.vocabPercent / 100;
|
|
|
if (percent % 1 == 0) {
|
|
|
item.name = item.vlCnName + " " + percent + "%";
|
|
|
} else {
|