Procházet zdrojové kódy

首页修改 渲染问题

bding před 1 rokem
rodič
revize
63a79e0e1d
1 změnil soubory, kde provedl 5 přidání a 4 odebrání
  1. 5 4
      pages/index/index.vue

+ 5 - 4
pages/index/index.vue

@@ -30,7 +30,7 @@
       <view class="content-ul">
         <view class="item-ul">
           <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 === 'newchart'">
                 <ChartItem
@@ -54,7 +54,7 @@
         </view>
         <view class="item-ul">
           <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 === 'newchart'">
                 <ChartItem
@@ -151,14 +151,15 @@ export default {
         let listArr = [];
         res.Data.List &&
           res.Data.List.forEach((item) => {
-            listArr.push({
+            let obj = {
               Source: item.Source,
               Article: item.Article,
               Newchart: item.Newchart,
               Activity: item.Activity || item.Activityspecial,
               Roadshow: item.Roadshow || item.Activityvideo || item.Activityvoice,
               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];
         if (this.refresh) {