|
|
@ -5,16 +5,36 @@ |
|
|
|
<span>{{ actDetail.title }}</span> |
|
|
|
</div> |
|
|
|
<div class="policy-info"> |
|
|
|
<span> |
|
|
|
<a-icon class="baseColor" style="font-size: 14px; margin-right: 10px" type="clock-circle" /> |
|
|
|
<span>{{ actDetail.time }}</span> |
|
|
|
</span> |
|
|
|
<span style="margin-left: 60px"> |
|
|
|
<a-icon class="baseColor" style="margin-right: 10px" type="environment" /> |
|
|
|
<span>{{ actDetail.site }}</span> |
|
|
|
</span> |
|
|
|
<div> |
|
|
|
<span> |
|
|
|
<a-icon class="baseColor" style="font-size: 14px; margin-right: 10px" type="clock-circle" /> |
|
|
|
<span>{{ actDetail.releaseTime }} - {{ actDetail.closeTime }}</span> |
|
|
|
</span> |
|
|
|
<span style="margin-left: 60px"> |
|
|
|
<a-icon class="baseColor" style="margin-right: 10px" type="environment" /> |
|
|
|
<span>{{ actDetail.address }}</span> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
<!-- </div> --> |
|
|
|
<!-- <div class="policy-info"> --> |
|
|
|
<div> |
|
|
|
<span> |
|
|
|
<span style="font-size: 14px; margin-right: 10px"> 会议主题:</span> |
|
|
|
<!-- <a-icon class="baseColor" style="font-size: 14px; margin-right: 10px" type="clock-circle" /> --> |
|
|
|
<span>{{ actDetail.theme }}</span> |
|
|
|
</span> |
|
|
|
<span style="margin-left: 60px"> |
|
|
|
<!-- <a-icon class="baseColor" style="margin-right: 10px" type="environment" /> --> |
|
|
|
<span>{{ actDetail.organization }}</span> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<span style="font-size: 14px; margin-right: 10px"> 主讲嘉宾:</span> |
|
|
|
<span>{{ actDetail.name }}</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="policy-content" v-dompurify-html="actDetail.content"></div> |
|
|
|
<div class="policy-other" v-if="actDetail.other">其他事宜:{{ actDetail.other }}</div> |
|
|
|
<a-button disabled style="margin: 50px 25px" v-if="actDetail.releaseTime && Date.parse(actDetail.releaseTime) < Date.parse(nowData)"> |
|
|
|
报名已结束 |
|
|
|
</a-button> |
|
|
@ -89,9 +109,10 @@ export default { |
|
|
|
} |
|
|
|
|
|
|
|
.policy-info { |
|
|
|
height: 76px; |
|
|
|
line-height: 76px; |
|
|
|
height: 150px; |
|
|
|
line-height: 50px; |
|
|
|
text-align: center; |
|
|
|
margin-bottom: 50px; |
|
|
|
} |
|
|
|
|
|
|
|
.policy-content { |
|
|
@ -132,4 +153,8 @@ export default { |
|
|
|
right: 20px; |
|
|
|
bottom: 20px; |
|
|
|
} |
|
|
|
|
|
|
|
.policy-other { |
|
|
|
margin: 50px 25px; |
|
|
|
} |
|
|
|
</style> |
|
|
|