shish 13 часов назад
Родитель
Сommit
0534a05248

+ 3 - 3
mallApp/src/components/home/activitySection.vue

@@ -40,7 +40,7 @@
               <text class="price">¥{{ formatPrice(g.price) }}</text>
               <text class="origin-price">¥{{ formatPrice(g.originPrice) }}</text>
             </view>
-            <view class="action-btn">{{ actionText }} ></view>
+            <view class="action-btn">{{ actionText }}</view>
           </view>
         </view>
       </view>
@@ -384,8 +384,8 @@ export default {
 }
 .action-btn {
   flex-shrink: 0;
-  padding: 13upx 24upx;
-  font-size: 24upx;
+  padding: 18upx 24upx;
+  font-size: 26upx;
   color: #fff;
   background: linear-gradient(135deg, #FF8FA3, #FF4D6D);
   border-radius: 28upx;

+ 5 - 3
mallApp/src/pages/home/recent.vue

@@ -825,23 +825,25 @@ page {
       }
     }
 
-    /* 余额 > 0:文字蓝色,背景保持原绿色底 */
+    /* 余额 > 0:文字蓝色加粗,背景保持原绿色底 */
     &.is-positive {
       background: #eef9f0;
 
       .balance-btn-label,
       .balance-btn-value {
         color: #4c8ff3;
+        font-weight: 700;
       }
     }
 
-    /* 待结(余额 < 0):标签+数值均为红色 */
+    /* 待结(余额 < 0):标签+数值均为红色加粗 */
     &.is-debt {
       background: #fef2f2;
 
       .balance-btn-label,
       .balance-btn-value {
         color: #ef4444;
+        font-weight: 700;
       }
     }
   }
@@ -866,7 +868,7 @@ page {
   }
 
   .balance-btn-label {
-    font-size: 28upx;
+    font-size: 30upx;
     font-weight: 600;
     margin-right: 8upx;
   }