|
@@ -30,7 +30,7 @@
|
|
<view class="content-ul">
|
|
<view class="content-ul">
|
|
<view class="item-ul">
|
|
<view class="item-ul">
|
|
<block v-for="(item, index) in newDataList" :key="index">
|
|
<block v-for="(item, index) in newDataList" :key="index">
|
|
- <view v-if="index % 2 == 0">
|
|
|
|
|
|
+ <view v-if="index % 2 == 0 && item.IsShowData">
|
|
<block v-if="item.Source === 'article'"> <ReportItem :list="item.Article" /></block>
|
|
<block v-if="item.Source === 'article'"> <ReportItem :list="item.Article" /></block>
|
|
<block v-if="item.Source === 'newchart'">
|
|
<block v-if="item.Source === 'newchart'">
|
|
<ChartItem
|
|
<ChartItem
|
|
@@ -54,7 +54,7 @@
|
|
</view>
|
|
</view>
|
|
<view class="item-ul">
|
|
<view class="item-ul">
|
|
<block v-for="(item, index) in newDataList" :key="index">
|
|
<block v-for="(item, index) in newDataList" :key="index">
|
|
- <view v-if="index % 2 !== 0">
|
|
|
|
|
|
+ <view v-if="index % 2 !== 0 && item.IsShowData">
|
|
<block v-if="item.Source === 'article'"> <ReportItem :list="item.Article" /></block>
|
|
<block v-if="item.Source === 'article'"> <ReportItem :list="item.Article" /></block>
|
|
<block v-if="item.Source === 'newchart'">
|
|
<block v-if="item.Source === 'newchart'">
|
|
<ChartItem
|
|
<ChartItem
|
|
@@ -151,14 +151,15 @@ export default {
|
|
let listArr = [];
|
|
let listArr = [];
|
|
res.Data.List &&
|
|
res.Data.List &&
|
|
res.Data.List.forEach((item) => {
|
|
res.Data.List.forEach((item) => {
|
|
- listArr.push({
|
|
|
|
|
|
+ let obj = {
|
|
Source: item.Source,
|
|
Source: item.Source,
|
|
Article: item.Article,
|
|
Article: item.Article,
|
|
Newchart: item.Newchart,
|
|
Newchart: item.Newchart,
|
|
Activity: item.Activity || item.Activityspecial,
|
|
Activity: item.Activity || item.Activityspecial,
|
|
Roadshow: item.Roadshow || item.Activityvideo || item.Activityvoice,
|
|
Roadshow: item.Roadshow || item.Activityvideo || item.Activityvoice,
|
|
ThreeSummary: item.Researchsummary || item.Minutessummary || item.Meetingreviewchapt || item.ProductInterior,
|
|
ThreeSummary: item.Researchsummary || item.Minutessummary || item.Meetingreviewchapt || item.ProductInterior,
|
|
- });
|
|
|
|
|
|
+ };
|
|
|
|
+ listArr.push({ ...obj, IsShowData: obj.Article || obj.Newchart || obj.Roadshow || obj.Activity || obj.ThreeSummary });
|
|
});
|
|
});
|
|
this.newDataList = this.page_no === 1 ? listArr : [...this.newDataList, ...listArr];
|
|
this.newDataList = this.page_no === 1 ? listArr : [...this.newDataList, ...listArr];
|
|
if (this.refresh) {
|
|
if (this.refresh) {
|