shish 2 месяцев назад
Родитель
Сommit
2fee73027c
1 измененных файлов с 11 добавлено и 4 удалено
  1. 11 4
      hdPad/src/pages/home/components/selectPrice.vue

+ 11 - 4
hdPad/src/pages/home/components/selectPrice.vue

@@ -62,7 +62,8 @@
                             </view>
                         </view>
                         <view v-if="Number(balance) > 0" class="rcv-customer-line">
-                            {{ rcvCustomerBalanceLabel }} ¥{{ formatMoney(balance) }}
+                            <text class="rcv-customer-line__name">{{ rcvCustomerBalanceLabel }}</text>
+                            <text class="rcv-customer-line__amt"> ¥{{ formatMoney(balance) }}</text>
                         </view>
                         <view v-if="selHasPay === 1" class="rcv-sub-block">
                             <view class="rcv-pay-title rcv-pay-title-sub">请选择线下收款方式</view>
@@ -1371,12 +1372,19 @@ export default {
         border-color: #09c567;
     }
     .rcv-customer-line {
-        color: #3385ff;
         font-size: 13upx;
-        font-weight: bold;
         margin-bottom: 4upx;
         margin-top: 2upx;
     }
+    .rcv-customer-line__name {
+        color: #999999;
+        font-weight: normal;
+    }
+    .rcv-customer-line__amt {
+        color: #3385ff;
+        font-weight: bold;
+        margin-left:20upx;
+    }
     .pay-amount-row {
         display: flex;
         flex-direction: row;
@@ -1467,7 +1475,6 @@ export default {
         border: 1upx solid #eeeeee;
         border-radius: 6upx;
         padding: 10upx;
-        padding-bottom: 52upx;
         margin-top: 0;
         margin-bottom: 10upx;
         &.calc-section-active {