jiangping
2025-03-18 cc6ab7021c3aef6ca3bbf05f8bcb5bfe0e6f6096
bicycle/pages/settlementDetails/settlementDetails.vue
@@ -2,10 +2,13 @@
   <view class="details">
      <view class="details_head">
         <view class="details_head_a">合计消费:</view>
         <view class="details_head_b">¥{{ (info.amount / 100).toFixed(2) }}</view>
         <view class="details_head_b">
            <text class="details_head_b_a">¥{{ (info.amount / 100).toFixed(2) }}</text>
            <text class="details_head_b_b" v-if="info.haveDisCount === 1">骑行卡抵扣:¥{{Number((info.disCountMoney / 100).toFixed(2))}}</text>
         </view>
         <view class="details_head_c">
            <text>结算车型:{{ info.bikeType ? info.bikeType : '-' }}</text>
            <text>计费时长:{{ info.duration ? info.duration : '-' }}分钟</text>
            <text>计费时长:{{ info.duration ? String(info.duration) : '-' }}分钟</text>
         </view>
      </view>
      <view class="details_list">
@@ -76,10 +79,20 @@
         color: #FFFFFF;
      }
      .details_head_b {
         font-size: 40rpx;
         font-family: PingFangSC-Regular, PingFang SC;
         font-weight: 400;
         color: #FFFFFF;
         width: 100%;
         display: flex;
         align-items: center;
         .details_head_b_a {
            font-size: 40rpx;
            font-weight: 400;
            color: #FFFFFF;
         }
         .details_head_b_b {
            font-weight: 400;
            font-size: 26rpx;
            color: #FFFFFF;
            margin-left: 16rpx;
         }
      }
      .details_head_c {
         width: 100%;