|
@@ -80,7 +80,7 @@ async function goEdit(){
|
|
|
</div>
|
|
|
<!-- 晨报/周报 -->
|
|
|
<template v-if="['day','week'].includes(reportInfo.ChapterType)">
|
|
|
- <div class="report-abstract">摘要:{{reportInfo.Abstract}}</div>
|
|
|
+ <div class="report-abstract" v-if="reportInfo.Abstract">摘要:{{reportInfo.Abstract}}</div>
|
|
|
<ul class="chapter-list-wrap">
|
|
|
<li class="chapter-item-box" v-for="item in reportInfo.ChapterList" :key="item.ReportChapterId">
|
|
|
<div class="type-box">
|
|
@@ -97,7 +97,7 @@ async function goEdit(){
|
|
|
<template v-else>
|
|
|
<!-- 音频 -->
|
|
|
<AudioBox :url="reportInfo.VideoUrl" v-if="reportInfo.VideoUrl"/>
|
|
|
- <div class="report-abstract">摘要:{{reportInfo.Abstract}}</div>
|
|
|
+ <div class="report-abstract" v-if="reportInfo.Abstract">摘要:{{reportInfo.Abstract}}</div>
|
|
|
<div class="report-html-wrap" v-html="reportInfo.Content"></div>
|
|
|
</template>
|
|
|
</div>
|