|
@@ -15,27 +15,26 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div>
|
|
- <PullRefresh v-model="refreshing" @refresh="onRefresh" v-if="tabActive!==0">
|
|
|
|
|
|
+ <PullRefresh v-model="refreshing" @refresh="onRefresh" v-if="tabActive !== 0">
|
|
<List v-model:loading="loading" :finished="finished" finished-text="没有更多了" @load="onLoad">
|
|
<List v-model:loading="loading" :finished="finished" finished-text="没有更多了" @load="onLoad">
|
|
<div class="data-cont">
|
|
<div class="data-cont">
|
|
<div class="report-ul">
|
|
<div class="report-ul">
|
|
<template v-for="(report, index) in dataList" :key="index">
|
|
<template v-for="(report, index) in dataList" :key="index">
|
|
<div class="report-item" v-if="index % 2 === 0" @click="goDetail(report)">
|
|
<div class="report-item" v-if="index % 2 === 0" @click="goDetail(report)">
|
|
|
|
+ <div class="item-title text-Line">{{ report.Title }}</div>
|
|
<div class="item-content-img" v-if="report.BodyHtml">
|
|
<div class="item-content-img" v-if="report.BodyHtml">
|
|
<img :src="report.BodyHtml" mode="" />
|
|
<img :src="report.BodyHtml" mode="" />
|
|
</div>
|
|
</div>
|
|
- <div class="item-content" v-else>{{ report.Body }}</div>
|
|
|
|
- <div class="line"></div>
|
|
|
|
- <text class="item-title">{{ report.Title }}</text>
|
|
|
|
- <div class="item-abstract text_twoLine" v-if="report.ExpertBackground">
|
|
|
|
- <img src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/fenxi_ico.png" class="report_ico" />
|
|
|
|
- {{ report.ExpertBackground }}
|
|
|
|
|
|
+ <div class="item-content" v-if="report.Annotation">
|
|
|
|
+ <p>{{ report.ArticleResponse == 4 ? "核心观点" : "核心结论" }}:</p>
|
|
|
|
+ <p v-html="report.Annotation"></p>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="item-abstract text-Line" v-if="report.Abstract && report.ArticleResponse != 1">摘要:{{ report.Abstract }}</div>
|
|
<div class="item-createtime">
|
|
<div class="item-createtime">
|
|
- <text>{{ report.PublishDate }}</text>
|
|
|
|
|
|
+ <span>{{ report.PublishDate }}</span>
|
|
<div class="item-examine" v-if="report.IsResearch">
|
|
<div class="item-examine" v-if="report.IsResearch">
|
|
<img src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/examine_icon.png" />
|
|
<img src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/examine_icon.png" />
|
|
- <text>{{ report.Pv }}</text>
|
|
|
|
|
|
+ <span>{{ report.Pv }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -44,21 +43,20 @@
|
|
<div class="report-ul">
|
|
<div class="report-ul">
|
|
<template v-for="(report, index) in dataList" :key="index">
|
|
<template v-for="(report, index) in dataList" :key="index">
|
|
<div class="report-item" v-if="index % 2 != 0" @click="goDetail(report)">
|
|
<div class="report-item" v-if="index % 2 != 0" @click="goDetail(report)">
|
|
|
|
+ <div class="item-title text-Line">{{ report.Title }}</div>
|
|
<div class="item-content-img" v-if="report.BodyHtml">
|
|
<div class="item-content-img" v-if="report.BodyHtml">
|
|
- <img :src="report.BodyHtml" />
|
|
|
|
|
|
+ <img :src="report.BodyHtml" mode="" />
|
|
</div>
|
|
</div>
|
|
- <div class="item-content" v-else>{{ report.Body }}</div>
|
|
|
|
- <div class="line"></div>
|
|
|
|
- <text class="item-title">{{ report.Title }}</text>
|
|
|
|
- <div class="item-abstract text_twoLine" v-if="report.ExpertBackground">
|
|
|
|
- <img src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/fenxi_ico.png" class="report_ico" />
|
|
|
|
- {{ report.ExpertBackground }}
|
|
|
|
|
|
+ <div class="item-content" v-if="report.Annotation">
|
|
|
|
+ <p>{{ report.ArticleResponse == 4 ? "核心观点" : "核心结论" }}:</p>
|
|
|
|
+ <p v-html="report.Annotation"></p>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="item-abstract text-Line" v-if="report.Abstract && report.ArticleResponse != 1">摘要:{{ report.Abstract }}</div>
|
|
<div class="item-createtime">
|
|
<div class="item-createtime">
|
|
- <text>{{ report.PublishDate }}</text>
|
|
|
|
|
|
+ <span>{{ report.PublishDate }}</span>
|
|
<div class="item-examine" v-if="report.IsResearch">
|
|
<div class="item-examine" v-if="report.IsResearch">
|
|
<img src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/examine_icon.png" />
|
|
<img src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/examine_icon.png" />
|
|
- <text>{{ report.Pv }}</text>
|
|
|
|
|
|
+ <span>{{ report.Pv }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|