|
@@ -19,7 +19,7 @@
|
|
|
</header>
|
|
|
<div
|
|
|
style="
|
|
|
- padding: 0rem 0.8rem 0.4rem;
|
|
|
+ padding: 0rem 0.8rem;
|
|
|
box-sizing: border-box;
|
|
|
color: #666;
|
|
|
font-size: 0.66rem;
|
|
@@ -30,44 +30,6 @@
|
|
|
<span style="float: right" v-if="[2,6].includes(reportInfo.State)">{{ reportInfo.PublishTime }}</span>
|
|
|
</div>
|
|
|
|
|
|
- <div id="playcon" v-if="reportInfo.VideoUrl">
|
|
|
- <div>
|
|
|
- <img
|
|
|
- @click.stop="$refs.audioRef.playaudiopause()"
|
|
|
- v-if="
|
|
|
- $store.state.isplaying &&
|
|
|
- reportInfo.VideoUrl ==
|
|
|
- $store.state.audiolist[$store.state.playcount].video_url
|
|
|
- "
|
|
|
- src="~@/assets/img/playImg.png"
|
|
|
- style="width: 2rem; height: 2rem; float: left; margin-right: 0.4rem"
|
|
|
- />
|
|
|
- <img
|
|
|
- @click.stop="playaudio(reportInfo)"
|
|
|
- v-else
|
|
|
- src="~@/assets/img/pauseImg.png"
|
|
|
- style="width: 2rem; height: 2rem; float: left; margin-right: 0.4rem"
|
|
|
- />
|
|
|
- <p
|
|
|
- style="
|
|
|
- font-size: 0.64rem;
|
|
|
- line-height: 1rem;
|
|
|
- color: #333;
|
|
|
- white-space: nowrap;
|
|
|
- overflow: hidden;
|
|
|
- text-overflow: ellipsis;
|
|
|
- "
|
|
|
- >
|
|
|
- {{ reportInfo.VideoName }}
|
|
|
- </p>
|
|
|
- <p style="font-size: 0.56rem; line-height: 1rem; color: #878787">
|
|
|
- {{ parseInt(reportInfo.VideoPlaySeconds / 60) }}分{{
|
|
|
- parseInt(reportInfo.VideoPlaySeconds % 60)
|
|
|
- }}秒
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
<div id="abstract">
|
|
|
<div class="abstract_cont">
|
|
|
<div v-if="reportInfo.Abstract">摘要:{{ reportInfo.Abstract }}</div>
|