|
@@ -2,7 +2,7 @@
|
|
|
<s-layout title="确认订单">
|
|
|
<!-- TODO:这个判断先删除 v-if="state.orderInfo.need_address === 1" -->
|
|
|
<view class="bg-white address-box ss-m-b-14 ss-r-b-10" @tap="onSelectAddress">
|
|
|
- <s-address-item :item="state.addressInfo" :hasBorderBottom="false">
|
|
|
+ <s-address-item :item="state.addressInfo" :spuType="state.orderPayload.spuType" :hasBorderBottom="false">
|
|
|
<view class="ss-rest-button">
|
|
|
<text class="_icon-forward" />
|
|
|
</view>
|
|
@@ -46,7 +46,9 @@
|
|
|
<view class="order-item ss-flex ss-col-center ss-row-between ss-p-x-20 bg-white ss-r-10">
|
|
|
<view class="item-title">总价</view>
|
|
|
<view class="ss-flex ss-col-center">
|
|
|
- {{"¥"+fen2yuan(items.price.payPrice)}}
|
|
|
+ <image src="@/static/icon/points.png" v-if="state.orderPayload.spuPayType == 2" style="width:30rpx;height:30rpx" ></image>
|
|
|
+ <text v-else>¥</text>
|
|
|
+ {{fen2yuan(items.price.payPrice)}}
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -61,7 +63,9 @@
|
|
|
<view class="item-title">商品总价 共{{totalItemCount}}件商品</view>
|
|
|
<view class="ss-flex ss-col-center">
|
|
|
<text class="item-value ss-m-r-24">
|
|
|
- ¥{{ fen2yuan(state.orderInfo.price.totalPrice) }}
|
|
|
+ <image src="@/static/icon/points.png" v-if="state.orderPayload.spuPayType == 2" style="width:30rpx;height:30rpx" ></image>
|
|
|
+ <text v-else>¥</text>
|
|
|
+ {{ fen2yuan(state.orderInfo.price.totalPrice) }}
|
|
|
</text>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -70,19 +74,19 @@
|
|
|
<view class="item-title">运费</view>
|
|
|
<view class="ss-flex ss-col-center">
|
|
|
<text class="item-value ss-m-r-24">
|
|
|
- ¥{{ fen2yuan(state.orderInfo.price.deliveryPrice) }}
|
|
|
+ <image src="@/static/icon/points.png" v-if="state.orderPayload.spuPayType == 2" style="width:30rpx;height:30rpx" ></image>
|
|
|
+ <text v-else>¥</text>
|
|
|
+ {{ fen2yuan(state.orderInfo.price.deliveryPrice) }}
|
|
|
</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="order-item ss-flex ss-col-center ss-row-between">
|
|
|
+ <view class="order-item ss-flex ss-col-center ss-row-between" v-if="state.orderPayload.spuPayType != 2">
|
|
|
<view class="item-title">数字权益抵扣</view>
|
|
|
<view class="ss-flex ss-col-center" @tap="state.showPoints = true">
|
|
|
<!-- <text class="item-value text-red">
|
|
|
</text> -->
|
|
|
<text class="item-value" :class="state.usedPoint > 0 ? 'text-red' : 'text-disabled'">
|
|
|
- {{
|
|
|
- state.usedPoint > 0 ? ' 可抵扣' + state.usedPoint + '元' : '不使用数字权益'
|
|
|
- }}
|
|
|
+ {{ state.usedPoint > 0 ? ' 可抵扣' + state.usedPoint + '元' : '不使用数字权益' }}
|
|
|
</text>
|
|
|
<text class="_icon-forward item-icon" />
|
|
|
</view>
|
|
@@ -130,14 +134,18 @@
|
|
|
共{{ totalItemCount }}件
|
|
|
</view>
|
|
|
<view>合计:</view>
|
|
|
- <view class="total-num text-red"> ¥{{ fen2yuan(state.orderInfo.price.payPrice) }} </view>
|
|
|
+ <view class="total-num text-red">
|
|
|
+
|
|
|
+ <image src="@/static/icon/points.png" v-if="state.orderPayload.spuPayType == 2" style="width:30rpx;height:30rpx" ></image>
|
|
|
+ <text v-else>¥</text>
|
|
|
+ {{ fen2yuan(state.orderInfo.price.payPrice) - 0.01 }} </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
<!-- 数字权益-->
|
|
|
<s-points-pop v-model="state.couponInfo" :currentMemberPoints="state.currentMemberPoints"
|
|
|
- :currentTotalPrice="state.currentTotalPrice" :currentDeliveryPrice="state.currentDeliveryPrice" :show="state.showPoints" @confirm="onInputPoints"
|
|
|
- @close="state.showPoints = false" />
|
|
|
+ :currentTotalPrice="state.currentTotalPrice" :currentDeliveryPrice="state.currentDeliveryPrice"
|
|
|
+ :show="state.showPoints" @confirm="onInputPoints" @close="state.showPoints = false" />
|
|
|
|
|
|
<!-- 满额折扣弹框 TODO 非繁人:后续要把优惠信息打进去 -->
|
|
|
<!-- <s-discount-list
|
|
@@ -150,7 +158,12 @@
|
|
|
<su-fixed bottom :opacity="false" bg="bg-white" placeholder :noFixed="false" :index="200">
|
|
|
<view class="footer-box border-top ss-flex ss-row-between ss-p-x-20 ss-col-center">
|
|
|
<view class="total-box-footer ss-flex ss-col-center">
|
|
|
- <view class="total-num ss-font-30 text-red">
|
|
|
+ <view class="total-num ss-font-30 text-red " v-if="state.orderPayload.spuPayType == 2">
|
|
|
+ <image src="@/static/icon/points.png" v-if="state.orderPayload.spuPayType == 2" style="width:30rpx;height:30rpx" ></image>
|
|
|
+ {{ state.usedPoint }}
|
|
|
+ ¥0.01
|
|
|
+ </view>
|
|
|
+ <view class="total-num ss-font-30 text-red" v-else>
|
|
|
¥{{ fen2yuan(state.orderInfo.price.payPrice) }}
|
|
|
</view>
|
|
|
</view>
|
|
@@ -193,8 +206,8 @@
|
|
|
showDiscount: false, // 是否展示营销活动
|
|
|
currentMemberPoints: 0, //用户当前可用数字权益
|
|
|
usedPoint: 0, //用户使用的数字权益
|
|
|
- currentTotalPrice: 0 ,//当前的整个订单的总价格
|
|
|
- currentDeliveryPrice:0 // 当前订单的总运费
|
|
|
+ currentTotalPrice: 0, //当前的整个订单的总价格
|
|
|
+ currentDeliveryPrice: 0 // 当前订单的总运费
|
|
|
});
|
|
|
|
|
|
// 返回来的数据根据店铺名过滤 TODO
|
|
@@ -229,7 +242,14 @@
|
|
|
uni.$once('SELECT_ADDRESS', (e) => {
|
|
|
changeConsignee(e.addressInfo);
|
|
|
});
|
|
|
- sheep.$router.go('/pages/user/address/list');
|
|
|
+ console.log(state.orderPayload.spuType)
|
|
|
+ // 如果是虚拟商品 进入选虚拟地址
|
|
|
+ if(state.orderPayload.spuType){
|
|
|
+ sheep.$router.go('/pages/user/address/list');
|
|
|
+ }else{
|
|
|
+ sheep.$router.go('/pages/user/dummyAddress/list');
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
// 更改收货人地址&计算订单信息
|
|
@@ -239,7 +259,6 @@
|
|
|
}
|
|
|
await getOrderInfo();
|
|
|
}
|
|
|
-
|
|
|
// 使用数字权益
|
|
|
async function onInputPoints(points) {
|
|
|
|
|
@@ -254,16 +273,23 @@
|
|
|
|
|
|
// 提交订单
|
|
|
function onConfirm() {
|
|
|
+
|
|
|
if (!state.addressInfo.id) {
|
|
|
sheep.$helper.toast('请选择收货地址');
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
+ // console.log(state.usedPoint,)
|
|
|
+ if(state.usedPoint > state.currentMemberPoints){
|
|
|
+ sheep.$helper.toast('可用数字权益不足');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // if (state.currentMemberPoints)
|
|
|
submitOrder();
|
|
|
}
|
|
|
|
|
|
// 创建订单&跳转
|
|
|
async function submitOrder() {
|
|
|
+
|
|
|
// 处理每个店铺的留言 以{店铺id:留言}的形式返回
|
|
|
const shops = shopsByNames.value;
|
|
|
const shopRemarks = {};
|
|
@@ -271,7 +297,7 @@
|
|
|
const shop = shops[shopName];
|
|
|
shopRemarks[shop.shopId] = shop.remark;
|
|
|
});
|
|
|
-
|
|
|
+
|
|
|
const {
|
|
|
code,
|
|
|
data
|
|
@@ -279,7 +305,7 @@
|
|
|
items: state.orderPayload.items,
|
|
|
couponId: state.orderPayload.couponId,
|
|
|
addressId: state.addressInfo.id,
|
|
|
- deliveryType: 1, // TODO 非繁人:需要支持【门店自提】
|
|
|
+ deliveryType: state.orderPayload.spuType == 1 ? 1 : 3, // TODO 非繁人:需要支持【门店自提】
|
|
|
pointStatus: false, // TODO 非繁人:需要支持【数字权益选择】
|
|
|
combinationActivityId: state.orderPayload.combinationActivityId,
|
|
|
combinationHeadId: state.orderPayload.combinationHeadId,
|
|
@@ -305,12 +331,13 @@
|
|
|
// 每次查询设置订单之前 看有没有评论 如果有评论就存到shopRemarks
|
|
|
const shops = shopsByNames.value
|
|
|
let shopRemarks = {};
|
|
|
- if(Object.keys(shops).length !== 0){
|
|
|
+ if (Object.keys(shops).length !== 0) {
|
|
|
Object.keys(shops).forEach(shopName => {
|
|
|
const shop = shops[shopName];
|
|
|
shopRemarks[shopName] = shop.remark;
|
|
|
});
|
|
|
}
|
|
|
+
|
|
|
const {
|
|
|
data,
|
|
|
code
|
|
@@ -318,24 +345,25 @@
|
|
|
items: state.orderPayload.items,
|
|
|
couponId: state.orderPayload.couponId,
|
|
|
addressId: state.addressInfo.id,
|
|
|
- deliveryType: 1, // TODO 非繁人:需要支持【门店自提】
|
|
|
+ deliveryType: state.orderPayload.spuType == 1 ? 1 : 3, // TODO 非繁人:需要支持【门店自提】
|
|
|
pointStatus: false, // TODO 非繁人:需要支持【数字权益选择】
|
|
|
combinationActivityId: state.orderPayload.combinationActivityId,
|
|
|
combinationHeadId: state.orderPayload.combinationHeadId,
|
|
|
seckillActivityId: state.orderPayload.seckillActivityId,
|
|
|
- usedPoint: state.usedPoint
|
|
|
+ usedPoint: state.usedPoint,
|
|
|
+ addressType:state.orderPayload.spuType == 1 ? 1 : 2 //如果是虚拟产品
|
|
|
});
|
|
|
if (code !== 0) {
|
|
|
return;
|
|
|
}
|
|
|
state.orderInfo = data;
|
|
|
// 如果shopRemarks有评论的话 就放回shopsByNames
|
|
|
- if(Object.keys(shopRemarks).length !== 0){
|
|
|
+ if (Object.keys(shopRemarks).length !== 0) {
|
|
|
Object.keys(shopRemarks).forEach(shopName => {
|
|
|
shopsByNames.value[shopName].remark = shopRemarks[shopName]
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// 设置收货地址
|
|
|
if (state.orderInfo.address) {
|
|
|
state.addressInfo = state.orderInfo.address;
|
|
@@ -344,7 +372,12 @@
|
|
|
state.currentTotalPrice = fen2yuan(state.orderInfo.price.payPrice)
|
|
|
state.currentDeliveryPrice = fen2yuan(state.orderInfo.price.deliveryPrice)
|
|
|
// console.log("父",state.currentTotalPrice)
|
|
|
-
|
|
|
+
|
|
|
+ if(state.orderPayload.spuPayType == 2){
|
|
|
+ state.usedPoint = state.currentTotalPrice - 0.01
|
|
|
+ console.log(state.spuType)
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|
|
@@ -372,6 +405,7 @@
|
|
|
return;
|
|
|
}
|
|
|
state.orderPayload = JSON.parse(options.data);
|
|
|
+
|
|
|
await getOrderInfo();
|
|
|
|
|
|
});
|
|
@@ -471,7 +505,7 @@
|
|
|
height: 100rpx;
|
|
|
|
|
|
.submit-btn {
|
|
|
- width: 240rpx;
|
|
|
+ width: 230rpx;
|
|
|
height: 70rpx;
|
|
|
font-size: 28rpx;
|
|
|
font-weight: 500;
|
|
@@ -482,7 +516,7 @@
|
|
|
}
|
|
|
|
|
|
.cancel-btn {
|
|
|
- width: 240rpx;
|
|
|
+ width: 230rpx;
|
|
|
height: 80rpx;
|
|
|
font-size: 26rpx;
|
|
|
background-color: #e5e5e5;
|