shish il y a 11 mois
Parent
commit
dd663bc913
1 fichiers modifiés avec 8 ajouts et 2 suppressions
  1. 8 2
      mallApp/src/pages/home/recent.vue

+ 8 - 2
mallApp/src/pages/home/recent.vue

@@ -109,7 +109,7 @@
               <view class="balance-item" @click.stop="recharge(item)" v-if="Number(item.balance) < 0">
               <view class="balance-item" @click.stop="recharge(item)" v-if="Number(item.balance) < 0">
                 <text class="balance-label">待结金额</text>
                 <text class="balance-label">待结金额</text>
                 <text class="balance-amount negative">¥{{parseFloat(Math.abs(item.balance))}}</text>
                 <text class="balance-amount negative">¥{{parseFloat(Math.abs(item.balance))}}</text>
-                <text class="balance-action">去结账</text>
+                <text class="balance-action-2">去结账</text>
               </view>
               </view>
               <view class="balance-item" @click.stop="recharge(item)" v-if="item.balance > 0">
               <view class="balance-item" @click.stop="recharge(item)" v-if="item.balance > 0">
                 <text class="balance-label">可用余额</text>
                 <text class="balance-label">可用余额</text>
@@ -678,7 +678,7 @@ page {
          }
          }
          
          
          &.positive {
          &.positive {
-           color: #2ed573;
+           color: #667eea;
          }
          }
        }
        }
        
        
@@ -688,6 +688,12 @@ page {
          text-decoration: underline;
          text-decoration: underline;
          font-weight: bold;
          font-weight: bold;
        }
        }
+       .balance-action-2{
+        font-size: 28upx;
+        color: #ff4757;
+        text-decoration: underline;
+        font-weight: bold;
+       }
     }
     }
   }
   }