添加:酒道馆商品购买下单流程
This commit is contained in:
parent
0fcf6d6992
commit
cb7f9908f7
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue