From 893ff90c6e21fa3a5241a8ae9b33836037cd5912 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: 星期四, 29 八月 2024 15:19:17 +0800
Subject: [PATCH] 提交

---
 pages/tabBar/current/current.vue     |    3 ++-
 pages/tabBar/wearhouse/wearhouse.vue |    3 ++-
 pages/tabBar/tabBarIndex.vue         |    9 +++++++--
 3 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/pages/tabBar/current/current.vue b/pages/tabBar/current/current.vue
index 44bedb3..3ba1601 100644
--- a/pages/tabBar/current/current.vue
+++ b/pages/tabBar/current/current.vue
@@ -15,7 +15,7 @@
 		</view>
 		<!-- 页面内容 -->
     <view class="m-p-15">
-      <view class="cardList">
+      <view class="cardList" v-if="classList && classList.length>0">
         <scroll-view scroll-y="true" class="scroll-Y" @scrolltoupper="upper"
                      @scrolltolower="lower" lower-threshold="150" @scroll="scrollView" style="height:100%">
           <view style="padding: 20px 0 20px">
@@ -37,6 +37,7 @@
           </view>
         </scroll-view>
       </view>
+      <u-empty style="margin-top: 80px" v-else text="暂无记录" mode="data"></u-empty>
     </view>
 		<tabBar :currentPagePath="page"></tabBar>
 	</view>
diff --git a/pages/tabBar/tabBarIndex.vue b/pages/tabBar/tabBarIndex.vue
index fba257b..ea10807 100644
--- a/pages/tabBar/tabBarIndex.vue
+++ b/pages/tabBar/tabBarIndex.vue
@@ -65,8 +65,13 @@
   border-radius: 99px;
   overflow: hidden;
   box-shadow: 0 -6px 10px rgba(150, 150, 150, 0.1), 0 6px 10px rgba(150, 150, 150, 0.1);
-  backdrop-filter: blur(10px);
-  -webkit-backdrop-filter: blur(10px);
+
+  /deep/ .u-tabbar__content{
+    background-color: rgba(255,255,255,.4);
+    backdrop-filter: blur(5px);
+    -webkit-backdrop-filter: blur(5px);
+    border: 1px solid rgba(255,255,255,.8);
+  }
 
   /deep/ .u-tabbar .u-border-top{
     border-color: rgba(0,0,0,0) !important;
diff --git a/pages/tabBar/wearhouse/wearhouse.vue b/pages/tabBar/wearhouse/wearhouse.vue
index 1606c59..a05728a 100644
--- a/pages/tabBar/wearhouse/wearhouse.vue
+++ b/pages/tabBar/wearhouse/wearhouse.vue
@@ -15,7 +15,7 @@
 		</view>
 		<!-- 页面内容 -->
     <view class="m-p-15">
-      <view class="cardList">
+      <view class="cardList" v-if="quizList && quizList.length>0">
         <scroll-view scroll-y="true" class="scroll-Y" @scrolltoupper="upper"
                      @scrolltolower="lower" lower-threshold="150" @scroll="scrollView" style="height:100%">
           <view style="padding: 20px 0 20px">
@@ -35,6 +35,7 @@
           </view>
         </scroll-view>
       </view>
+      <u-empty style="margin-top: 80px" v-else text="暂无记录" mode="data"></u-empty>
     </view>
 		<tabBar :currentPagePath="page"></tabBar>
 	</view>

--
Gitblit v1.9.2