添加:酒道馆商品购买下单流程

This commit is contained in:
wuhui_zzw 2024-03-08 21:09:06 +08:00
parent 0fcf6d6992
commit cb7f9908f7
1 changed files with 44 additions and 2 deletions

View File

@ -367,6 +367,24 @@
</view>
</view>
</view>-->
<!-- 酒水卡积分抵扣明细 START-->
<view class='item acea-row row-between-wrapper integral-switch-content' v-if="order_type == 36">
<view>酒水卡积分抵扣</view>
<view class='money wine-money'>
<view class="wine-line">
使用了{{orderTotalWineIntegral || 0 }}个酒水卡积分抵扣<text class="pColor">{{orderTotalWineIntegralPrice || 0}}</text>
</view>
<view class="wine-line">
剩余差价{{ orderTotalWineDiffMoney || 0 }}实际应付<text class="pColor">{{orderTotalWineDiffMoneyPrice || 0}}</text>
</view>
</view>
</view>
<!-- 酒水卡积分抵扣明细 END-->
<!--<view class='item acea-row row-between-wrapper' v-if="!seckillId && order_type != 3 && order_type != 4 && enabledPlatformCoupon">
<view>平台优惠券<text @tap="showCoupon" class="iconfont icon-wenhao1"></text></view>
<block v-if="platformCoupon.length > 0">
@ -548,6 +566,10 @@
coupon_price: 0, //
useIntegral: false, //使
integral_price: 0, //
orderTotalWineIntegralPrice: 0,
orderTotalWineIntegral: '',
orderTotalWineDiffMoney: 0,
orderTotalWineDiffMoneyPrice: 0,
integral: 0,
ChangePrice: 0, //使
formIds: [], //formid
@ -566,7 +588,7 @@
priceGroup: {},
animated: false,
totalPrice: 0,
// use_integral: false,
use_integral: false,
// use_mer_integral: false,// 使
// order_use_mer_integral: 0,// 使
// order_use_mer_integral_price: 0,//
@ -1046,6 +1068,13 @@
that.$set(that, 'coupon_price', res.data.order_coupon_price);
that.$set(that, 'integral_count', res.data.order_total_integral);
that.$set(that, 'integral_price', res.data.order_total_integral_price);
that.$set(that, 'orderTotalWineIntegral', res.data.orderTotalWineIntegral);
that.$set(that, 'orderTotalWineIntegralPrice', res.data.orderTotalWineIntegralPrice);
that.$set(that, 'orderTotalWineDiffMoney', res.data.orderTotalWineDiffMoney);
that.$set(that, 'orderTotalWineDiffMoneyPrice', res.data.orderTotalWineDiffMoneyPrice);
that.$set(that, 'open_integral', res.data.openIntegral);
that.$set(that, 'use_integral', res.data.useIntegral);
// that.$set(that, 'use_mer_integral', res.data.useMerIntegral);
@ -1671,7 +1700,20 @@
}
}
}
.wine-money{
display: inline-flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
width: 100%;
.wine-line{
width: 100%;
height: 50rpx;
line-height: 50rpx;
text-align: right;
}
}
/deep/checkbox .uni-checkbox-input.uni-checkbox-input-checked,