jwyu 3 жил өмнө
parent
commit
02d353f4e6

+ 5 - 1
pages-report/reportList.vue

@@ -147,7 +147,11 @@ export default {
     },
 
     handleSelectSecClassifyId(item){
-      this.selectSecClassifyId=item.classify_id_second
+      if(this.selectSecClassifyId==item.classify_id_second){
+        this.selectSecClassifyId=''
+      }else{
+        this.selectSecClassifyId=item.classify_id_second
+      }
       this.showFilter=false
       this.page=1
       this.finished=false

+ 1 - 1
pages-report/specialColumn/detail.vue

@@ -21,7 +21,7 @@
         <view class="section report-list-wrap" v-if="tabActive=='报告目录'">
             <view class="report-empty-box" v-if="finished&&list.length==0">
                 <image :src="globalImgUrls.chartEmpty" mode="widthFix" />
-                <view>暂无数据</view>
+                <view>暂无报告</view>
             </view>
             <block v-else>
             <view class="flex item" v-for="item in list" :key="item" @click="goDetail(item)">

+ 5 - 1
pages/report/report.vue

@@ -31,7 +31,7 @@
     </view>
     <view class="report-empty-box" v-if="finished&&list.length==0">
       <image :src="globalImgUrls.chartEmpty" mode="widthFix" />
-      <view>暂无数据</view>
+      <view>暂无报告</view>
     </view>
     <view class="list-wrap" v-else>
       <view class="list-item" v-for="item in list" :key="item.date">
@@ -336,6 +336,10 @@ export default {
     font-size: 28rpx;
     color: #666666;
     overflow-x: auto;
+    &::-webkit-scrollbar{
+      width: 0;
+      height: 0;
+    }
     .item{
       padding-bottom: 16rpx;
       margin-right: 50rpx;