Browse Source

【功能】下单页的优惠明细弹窗,不展示积分、优惠劵、会员折扣,因为它们已经单独展示了

YunaiV 10 tháng trước cách đây
mục cha
commit
47ac7d1fbc
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      sheep/components/s-discount-list/s-discount-list.vue

+ 1 - 1
sheep/components/s-discount-list/s-discount-list.vue

@@ -17,7 +17,7 @@
       >
         <view v-for="(item, index) in state.orderInfo.promotions" :key="index">
           <!-- 不展示积分、优惠劵、会员折扣,因为它们已经单独展示了 -->
-          <view class="ss-flex ss-m-b-40 subtitle" v-if="[1, 2, 3, 4, 5, 6].includes(item.type)">
+          <view class="ss-flex ss-m-b-40 subtitle" v-if="[1, 2, 3, 4, 5].includes(item.type)">
             <view> {{ item.description }} </view>
           </view>
         </view>