|
@@ -8,6 +8,15 @@
|
|
style="margin-bottom: 1em; display: block"
|
|
style="margin-bottom: 1em; display: block"
|
|
alt=""
|
|
alt=""
|
|
/>
|
|
/>
|
|
|
|
+ <p
|
|
|
|
+ class="content"
|
|
|
|
+ :style="
|
|
|
|
+ 'text-indent: 2em; font-weight: 700; padding: 0.5em 3px;font-size: ' +
|
|
|
|
+ fontSize +
|
|
|
|
+ 'px;'
|
|
|
|
+ "
|
|
|
|
+ v-html="desc"
|
|
|
|
+ ></p>
|
|
</div>
|
|
</div>
|
|
<div class="tv-list" :style="'font-size:' + fontSize + 'px'">
|
|
<div class="tv-list" :style="'font-size:' + fontSize + 'px'">
|
|
<div class="content">
|
|
<div class="content">
|
|
@@ -251,6 +260,7 @@ export default {
|
|
echarts: undefined,
|
|
echarts: undefined,
|
|
dayEcharts: undefined,
|
|
dayEcharts: undefined,
|
|
width: document.body.offsetWidth || 0,
|
|
width: document.body.offsetWidth || 0,
|
|
|
|
+ desc: ""
|
|
};
|
|
};
|
|
},
|
|
},
|
|
watch: {},
|
|
watch: {},
|
|
@@ -276,6 +286,7 @@ export default {
|
|
this.article = res.article || [];
|
|
this.article = res.article || [];
|
|
this.dep = res.dep || [];
|
|
this.dep = res.dep || [];
|
|
this.topic = res.topic || [];
|
|
this.topic = res.topic || [];
|
|
|
|
+ this.desc = res.desc || "";
|
|
});
|
|
});
|
|
},
|
|
},
|
|
computed: {},
|
|
computed: {},
|