|
@@ -172,7 +172,7 @@
|
|
|
<view class='item acea-row row-between-wrapper'>
|
|
<view class='item acea-row row-between-wrapper'>
|
|
|
<view>{{$t(`商品总价`)}}:</view>
|
|
<view>{{$t(`商品总价`)}}:</view>
|
|
|
<view class='money'>
|
|
<view class='money'>
|
|
|
- {{$t(`¥`)}}{{(parseFloat(priceGroup.totalPrice)+parseFloat(priceGroup.vipPrice)).toFixed(2)}}
|
|
|
|
|
|
|
+ {{$t(`¥`)}}{{allPrice}}
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view class='item acea-row row-between-wrapper'
|
|
<view class='item acea-row row-between-wrapper'
|
|
@@ -388,6 +388,7 @@
|
|
|
priceGroup: {},
|
|
priceGroup: {},
|
|
|
animated: false,
|
|
animated: false,
|
|
|
totalPrice: 0,
|
|
totalPrice: 0,
|
|
|
|
|
+ allPrice: 0,
|
|
|
integralRatio: "0",
|
|
integralRatio: "0",
|
|
|
pagesUrl: "",
|
|
pagesUrl: "",
|
|
|
orderKey: "",
|
|
orderKey: "",
|
|
@@ -812,6 +813,9 @@
|
|
|
that.$set(that, 'totalPrice', that.$util.$h.Add(parseFloat(res.data.priceGroup.totalPrice),
|
|
that.$set(that, 'totalPrice', that.$util.$h.Add(parseFloat(res.data.priceGroup.totalPrice),
|
|
|
parseFloat(res.data
|
|
parseFloat(res.data
|
|
|
.priceGroup.storePostage)));
|
|
.priceGroup.storePostage)));
|
|
|
|
|
+ that.$set(that, 'allPrice', that.$util.$h.Add(parseFloat(res.data.priceGroup.totalPrice),
|
|
|
|
|
+ parseFloat(res.data
|
|
|
|
|
+ .priceGroup.vipPrice)).toFixed(2));
|
|
|
that.$set(that, 'seckillId', parseInt(res.data.seckill_id));
|
|
that.$set(that, 'seckillId', parseInt(res.data.seckill_id));
|
|
|
that.$set(that, 'invoice_func', res.data.invoice_func);
|
|
that.$set(that, 'invoice_func', res.data.invoice_func);
|
|
|
that.$set(that, 'special_invoice', res.data.special_invoice);
|
|
that.$set(that, 'special_invoice', res.data.special_invoice);
|
|
@@ -1454,6 +1458,12 @@
|
|
|
display: none;
|
|
display: none;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ .order-submission {
|
|
|
|
|
+ /* #ifdef APP-PLUS */
|
|
|
|
|
+ padding-bottom: 70rpx;
|
|
|
|
|
+ /* #endif */
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
.order-submission .line {
|
|
.order-submission .line {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
height: 3rpx;
|
|
height: 3rpx;
|
|
@@ -1822,4 +1832,4 @@
|
|
|
.fontC {
|
|
.fontC {
|
|
|
color: grey;
|
|
color: grey;
|
|
|
}
|
|
}
|
|
|
-</style>
|
|
|
|
|
|
|
+</style>
|