zyejMAll-mobile/pages/order/confirm.vue

529 lines
17 KiB
Vue
Raw Normal View History

2024-08-07 10:31:42 +08:00
<template>
<s-layout title="确认订单">
2024-09-18 17:33:25 +08:00
<!-- 头部地址选择配送地址自提地址 -->
<AddressSelection v-model="addressState" />
2024-08-07 10:31:42 +08:00
<!-- 商品信息 -->
<view class="order-card-box ss-m-b-14">
<s-goods-item
2024-10-11 16:07:43 +08:00
v-for="item in state.orderInfo.items"
:key="item.skuId"
:img="item.picUrl"
:title="item.spuName"
:skuText="item.properties.map((property) => property.valueName).join(' ')"
:price="item.price"
:num="item.count"
marginBottom="10"
2024-08-07 10:31:42 +08:00
/>
<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">
<uni-easyinput
2024-10-11 16:07:43 +08:00
maxlength="20"
placeholder="建议留言前先与商家沟通"
v-model="state.orderPayload.remark"
:inputBorder="false"
:clearable="false"
2024-08-07 10:31:42 +08:00
/>
</view>
</view>
</view>
<!-- 价格信息 -->
<view class="bg-white total-card-box ss-p-20 ss-m-b-14 ss-r-10">
<view class="total-box-content border-bottom">
<view class="order-item ss-flex ss-col-center ss-row-between">
<view class="item-title">商品金额</view>
<view class="ss-flex ss-col-center">
<text class="item-value ss-m-r-24">
{{ fen2yuan(state.orderInfo.price.totalPrice) }}
</text>
</view>
</view>
<view
2024-10-11 16:07:43 +08:00
v-if="state.orderPayload.pointActivityId"
class="order-item ss-flex ss-col-center ss-row-between"
>
<view class="item-title">兑换积分</view>
<view class="ss-flex ss-col-center">
<image
src="https://zysc.fjptzykj.com:3000/shangcheng/b0c400b1b30a9ca45031093595e42533de267823285c702fed250061920debf0.png"
class="score-img"
/>
<text class="item-value ss-m-r-24">
2024-10-14 19:12:22 +08:00
{{ state.orderInfo.usePoint }}
2024-10-11 16:07:43 +08:00
</text>
</view>
</view>
<view
class="order-item ss-flex ss-col-center ss-row-between"
v-if="state.orderInfo.type === 0 || state.orderPayload.pointActivityId"
2024-08-07 10:31:42 +08:00
>
2024-09-18 17:33:25 +08:00
<view class="item-title">积分抵扣</view>
2024-08-07 10:31:42 +08:00
<view class="ss-flex ss-col-center">
2024-10-11 16:07:43 +08:00
{{ state.pointStatus || state.orderPayload.pointActivityId ? '剩余积分' : '当前积分' }}
2024-08-07 10:31:42 +08:00
<image
2024-10-11 16:07:43 +08:00
src="https://zysc.fjptzykj.com:3000/shangcheng/b0c400b1b30a9ca45031093595e42533de267823285c702fed250061920debf0.png"
class="score-img"
2024-08-07 10:31:42 +08:00
/>
2024-09-18 17:33:25 +08:00
<text class="item-value ss-m-r-24">
2024-10-11 16:07:43 +08:00
{{
state.pointStatus || state.orderPayload.pointActivityId
2024-10-14 19:12:22 +08:00
? state.orderInfo.totalPoint - state.orderInfo.usePoint
2024-10-11 16:07:43 +08:00
: state.orderInfo.totalPoint || 0
}}
2024-09-18 17:33:25 +08:00
</text>
2024-10-11 16:07:43 +08:00
<checkbox-group @change="changeIntegral" v-if="!state.orderPayload.pointActivityId">
<checkbox
:checked="state.pointStatus"
:disabled="!state.orderInfo.totalPoint || state.orderInfo.totalPoint <= 0"
/>
2024-09-18 17:33:25 +08:00
</checkbox-group>
2024-08-07 10:31:42 +08:00
</view>
</view>
2024-09-18 17:33:25 +08:00
<!-- 快递配置时信息的展示 -->
2024-10-11 16:07:43 +08:00
<view
class="order-item ss-flex ss-col-center ss-row-between"
v-if="addressState.deliveryType === 1"
>
2024-08-07 10:31:42 +08:00
<view class="item-title">运费</view>
<view class="ss-flex ss-col-center">
2024-09-18 17:33:25 +08:00
<text class="item-value ss-m-r-24" v-if="state.orderInfo.price.deliveryPrice > 0">
2024-08-07 10:31:42 +08:00
+{{ fen2yuan(state.orderInfo.price.deliveryPrice) }}
</text>
2024-10-11 16:07:43 +08:00
<view class="item-value ss-m-r-24" v-else>免运费</view>
2024-09-18 17:33:25 +08:00
</view>
</view>
<!-- 门店自提时需要填写姓名和手机号 -->
2024-10-11 16:07:43 +08:00
<view
class="order-item ss-flex ss-col-center ss-row-between"
v-if="addressState.deliveryType === 2"
>
2024-09-18 17:33:25 +08:00
<view class="item-title">联系人</view>
<view class="ss-flex ss-col-center">
<uni-easyinput
2024-10-11 16:07:43 +08:00
maxlength="20"
placeholder="请填写您的联系姓名"
v-model="addressState.receiverName"
:inputBorder="false"
:clearable="false"
2024-09-18 17:33:25 +08:00
/>
</view>
</view>
2024-10-11 16:07:43 +08:00
<view
class="order-item ss-flex ss-col-center ss-row-between"
v-if="addressState.deliveryType === 2"
>
2024-09-18 17:33:25 +08:00
<view class="item-title">联系电话</view>
<view class="ss-flex ss-col-center">
<uni-easyinput
2024-10-11 16:07:43 +08:00
maxlength="20"
placeholder="请填写您的联系电话"
v-model="addressState.receiverMobile"
:inputBorder="false"
:clearable="false"
2024-09-18 17:33:25 +08:00
/>
2024-08-07 10:31:42 +08:00
</view>
</view>
<!-- 优惠劵只有 type = 0 普通订单非拼团秒杀砍价才可以使用优惠劵 -->
<view
2024-10-11 16:07:43 +08:00
class="order-item ss-flex ss-col-center ss-row-between"
v-if="state.orderInfo.type === 0"
2024-08-07 10:31:42 +08:00
>
<view class="item-title">优惠券</view>
<view class="ss-flex ss-col-center" @tap="state.showCoupon = true">
<text class="item-value text-red" v-if="state.orderPayload.couponId > 0">
-{{ fen2yuan(state.orderInfo.price.couponPrice) }}
</text>
<text
2024-10-11 16:07:43 +08:00
class="item-value"
:class="
state.couponInfo.filter((coupon) => coupon.match).length > 0
? 'text-red'
: 'text-disabled'
"
v-else
2024-08-07 10:31:42 +08:00
>
{{
2024-10-11 16:07:43 +08:00
state.couponInfo.filter((coupon) => coupon.match).length > 0
? state.couponInfo.filter((coupon) => coupon.match).length + ' 张可用'
: '暂无可用优惠券'
2024-08-07 10:31:42 +08:00
}}
</text>
<text class="_icon-forward item-icon" />
</view>
</view>
<view
2024-10-11 16:07:43 +08:00
class="order-item ss-flex ss-col-center ss-row-between"
v-if="state.orderInfo.price.discountPrice > 0"
2024-08-07 10:31:42 +08:00
>
<view class="item-title">活动优惠</view>
2024-10-11 16:07:43 +08:00
<view class="ss-flex ss-col-center" @tap="state.showDiscount = true">
2024-08-07 10:31:42 +08:00
<text class="item-value text-red">
-{{ fen2yuan(state.orderInfo.price.discountPrice) }}
</text>
<text class="_icon-forward item-icon" />
</view>
</view>
<view
2024-10-11 16:07:43 +08:00
class="order-item ss-flex ss-col-center ss-row-between"
v-if="state.orderInfo.price.vipPrice > 0"
2024-08-07 10:31:42 +08:00
>
<view class="item-title">会员优惠</view>
<view class="ss-flex ss-col-center">
<text class="item-value text-red">
-{{ fen2yuan(state.orderInfo.price.vipPrice) }}
</text>
</view>
</view>
</view>
<view class="total-box-footer ss-font-28 ss-flex ss-row-right ss-col-center ss-m-r-28">
<view class="total-num ss-m-r-20">
{{ state.orderInfo.items.reduce((acc, item) => acc + item.count, 0) }}
</view>
<view>合计</view>
2024-09-18 17:33:25 +08:00
<view class="total-num text-red"> {{ fen2yuan(state.orderInfo.price.payPrice) }}</view>
2024-08-07 10:31:42 +08:00
</view>
</view>
<!-- 选择优惠券弹框 -->
<s-coupon-select
2024-10-11 16:07:43 +08:00
v-model="state.couponInfo"
:show="state.showCoupon"
@confirm="onSelectCoupon"
@close="state.showCoupon = false"
2024-08-07 10:31:42 +08:00
/>
2024-10-11 16:07:43 +08:00
<!-- 满额折扣弹框 TODO @puhui999折扣后续要把优惠信息打进去 -->
2024-08-07 10:31:42 +08:00
<s-discount-list
2024-10-11 16:07:43 +08:00
v-model="state.orderInfo"
:show="state.showDiscount"
@close="state.showDiscount = false"
2024-08-07 10:31:42 +08:00
/>
<!-- 底部 -->
<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">
{{ fen2yuan(state.orderInfo.price.payPrice) }}
</view>
</view>
<button
2024-10-11 16:07:43 +08:00
class="ss-reset-button ui-BG-Main-Gradient ss-r-40 submit-btn ui-Shadow-Main"
@tap="onConfirm"
2024-08-07 10:31:42 +08:00
>
提交订单
</button>
</view>
</su-fixed>
</s-layout>
</template>
<script setup>
2024-10-11 16:07:43 +08:00
import { reactive, ref, watch } from 'vue';
2024-08-07 10:31:42 +08:00
import { onLoad } from '@dcloudio/uni-app';
2024-09-18 17:33:25 +08:00
import AddressSelection from '@/pages/order/addressSelection.vue';
2024-08-07 10:31:42 +08:00
import sheep from '@/sheep';
import OrderApi from '@/sheep/api/trade/order';
2024-10-11 16:07:43 +08:00
import TradeConfigApi from '@/sheep/api/trade/config';
2024-08-07 10:31:42 +08:00
import { fen2yuan } from '@/sheep/hooks/useGoods';
const state = reactive({
orderPayload: {},
orderInfo: {
items: [], // 商品项列表
price: {}, // 价格信息
},
showCoupon: false, // 是否展示优惠劵
couponInfo: [], // 优惠劵列表
showDiscount: false, // 是否展示营销活动
2024-09-18 17:33:25 +08:00
// ========== 积分 ==========
pointStatus: false, //是否使用积分
2024-08-07 10:31:42 +08:00
});
2024-09-18 17:33:25 +08:00
const addressState = ref({
addressInfo: {}, // 选择的收货地址
2024-10-11 16:07:43 +08:00
deliveryType: 1, // 收货方式1-快递配送2-门店自提
isPickUp: true, // 门店自提是否开启
2024-09-18 17:33:25 +08:00
pickUpInfo: {}, // 选择的自提门店信息
receiverName: '', // 收件人名称
receiverMobile: '', // 收件人手机
});
2024-08-07 10:31:42 +08:00
2024-09-18 17:33:25 +08:00
// ========== 积分 ==========
/**
* 使用积分抵扣
*/
const changeIntegral = async () => {
state.pointStatus = !state.pointStatus;
2024-08-07 10:31:42 +08:00
await getOrderInfo();
2024-09-18 17:33:25 +08:00
};
2024-08-07 10:31:42 +08:00
// 选择优惠券
async function onSelectCoupon(couponId) {
2024-10-11 16:07:43 +08:00
state.orderPayload.couponId = couponId;
2024-08-07 10:31:42 +08:00
await getOrderInfo();
state.showCoupon = false;
}
// 提交订单
function onConfirm() {
2024-09-18 17:33:25 +08:00
if (addressState.value.deliveryType === 1 && !addressState.value.addressInfo.id) {
2024-08-07 10:31:42 +08:00
sheep.$helper.toast('请选择收货地址');
return;
}
2024-09-18 17:33:25 +08:00
if (addressState.value.deliveryType === 2) {
if (!addressState.value.pickUpInfo.id) {
sheep.$helper.toast('请选择自提门店地址');
return;
}
if (addressState.value.receiverName === '' || addressState.value.receiverMobile === '') {
sheep.$helper.toast('请填写联系人或联系人电话');
return;
}
if (!/^[\u4e00-\u9fa5\w]{2,16}$/.test(addressState.value.receiverName)) {
sheep.$helper.toast('请填写您的真实姓名');
return;
}
if (!/^1(3|4|5|7|8|9|6)\d{9}$/.test(addressState.value.receiverMobile)) {
sheep.$helper.toast('请填写正确的手机号');
return;
}
}
2024-08-07 10:31:42 +08:00
submitOrder();
}
// 创建订单&跳转
async function submitOrder() {
const { code, data } = await OrderApi.createOrder({
items: state.orderPayload.items,
couponId: state.orderPayload.couponId,
2024-09-18 17:33:25 +08:00
remark: state.orderPayload.remark,
deliveryType: addressState.value.deliveryType,
addressId: addressState.value.addressInfo.id, // 收件地址编号
2024-10-11 16:07:43 +08:00
pickUpStoreId: addressState.value.pickUpInfo.id, //自提门店编号
receiverName: addressState.value.receiverName, // 选择门店自提时,该字段为联系人名
receiverMobile: addressState.value.receiverMobile, // 选择门店自提时,该字段为联系人手机
2024-09-18 17:33:25 +08:00
pointStatus: state.pointStatus,
2024-08-07 10:31:42 +08:00
combinationActivityId: state.orderPayload.combinationActivityId,
combinationHeadId: state.orderPayload.combinationHeadId,
2024-08-07 21:40:27 +08:00
seckillActivityId: state.orderPayload.seckillActivityId,
2024-10-11 16:07:43 +08:00
pointActivityId: state.orderPayload.pointActivityId,
2024-08-07 10:31:42 +08:00
});
if (code !== 0) {
return;
}
// 更新购物车列表,如果来自购物车
if (state.orderPayload.items[0].cartId > 0) {
sheep.$store('cart').getList();
}
2024-09-18 17:33:25 +08:00
2024-08-07 10:31:42 +08:00
// 跳转到支付页面
2024-10-11 16:07:43 +08:00
if (data.payOrderId && data.payOrderId > 0) {
sheep.$router.redirect('/pages/pay/index', {
id: data.payOrderId,
});
} else {
sheep.$router.redirect('/pages/order/detail', {
id: data.id,
});
}
2024-08-07 10:31:42 +08:00
}
// 检查库存 & 计算订单价格
async function getOrderInfo() {
// 计算价格
2024-10-16 18:09:51 +08:00
let parm = {};
2024-10-21 17:47:58 +08:00
console.log(state.orderPayload.pointActivityId,'state.orderPayload.pointActivityId')
if(state.orderPayload.pointActivityId){
2024-10-16 18:09:51 +08:00
parm = {
items: state.orderPayload.items,
couponId: state.orderPayload.couponId,
deliveryType: addressState.value.deliveryType,
addressId: addressState.value.addressInfo.id, // 收件地址编号
pickUpStoreId: addressState.value.pickUpInfo.id, //自提门店编号
receiverName: addressState.value.receiverName, // 选择门店自提时,该字段为联系人名
receiverMobile: addressState.value.receiverMobile, // 选择门店自提时,该字段为联系人手机
pointStatus: state.pointStatus,
combinationActivityId: state.orderPayload.combinationActivityId,
combinationHeadId: state.orderPayload.combinationHeadId,
seckillActivityId: state.orderPayload.seckillActivityId,
pointActivityId: state.orderPayload.pointActivityId,
}
}else{
parm = {
items: state.orderPayload.items,
couponId: state.orderPayload.couponId,
deliveryType: addressState.value.deliveryType,
addressId: addressState.value.addressInfo.id, // 收件地址编号
pickUpStoreId: addressState.value.pickUpInfo.id, //自提门店编号
receiverName: addressState.value.receiverName, // 选择门店自提时,该字段为联系人名
receiverMobile: addressState.value.receiverMobile, // 选择门店自提时,该字段为联系人手机
pointStatus: state.pointStatus,
combinationActivityId: state.orderPayload.combinationActivityId,
combinationHeadId: state.orderPayload.combinationHeadId,
seckillActivityId: state.orderPayload.seckillActivityId,
}
}
const { data, code } = await OrderApi.settlementOrder(parm);
2024-08-07 10:31:42 +08:00
if (code !== 0) {
return;
}
state.orderInfo = data;
2024-10-11 16:07:43 +08:00
state.couponInfo = data.coupons || [];
2024-08-07 10:31:42 +08:00
// 设置收货地址
if (state.orderInfo.address) {
2024-09-18 17:33:25 +08:00
addressState.value.addressInfo = state.orderInfo.address;
2024-08-07 10:31:42 +08:00
}
}
onLoad(async (options) => {
if (!options.data) {
sheep.$helper.toast('参数不正确,请检查!');
return;
}
state.orderPayload = JSON.parse(options.data);
await getOrderInfo();
2024-10-11 16:07:43 +08:00
// 获取交易配置
const { data, code } = await TradeConfigApi.getTradeConfig();
if (code === 0) {
addressState.value.isPickUp = data.deliveryPickUpEnabled;
}
});
// 使用 watch 监听地址和配送方式的变化
watch(addressState, async (newAddress, oldAddress) => {
// 如果收货地址或配送方式有变化,则重新计算价格
if (
newAddress.addressInfo.id !== oldAddress.addressInfo.id ||
newAddress.deliveryType !== oldAddress.deliveryType
) {
await getOrderInfo();
}
2024-08-07 10:31:42 +08:00
});
</script>
<style lang="scss" scoped>
:deep() {
.uni-input-wrapper {
width: 320rpx;
}
.uni-easyinput__content-input {
font-size: 28rpx;
height: 72rpx;
text-align: right !important;
padding-right: 0 !important;
.uni-input-input {
font-weight: 500;
color: #333333;
font-size: 26rpx;
height: 32rpx;
margin-top: 4rpx;
}
}
.uni-easyinput__content {
display: flex !important;
align-items: center !important;
justify-content: right !important;
}
}
.score-img {
width: 36rpx;
height: 36rpx;
margin: 0 4rpx;
}
.order-item {
height: 80rpx;
.item-title {
font-size: 28rpx;
font-weight: 400;
}
.item-value {
font-size: 28rpx;
font-weight: 500;
font-family: OPPOSANS;
}
.text-disabled {
color: #bbbbbb;
}
.item-icon {
color: $dark-9;
}
.remark-input {
text-align: right;
}
.item-placeholder {
color: $dark-9;
font-size: 26rpx;
text-align: right;
}
}
.total-box-footer {
height: 90rpx;
.total-num {
color: #333333;
font-family: OPPOSANS;
}
}
.footer-box {
height: 100rpx;
.submit-btn {
width: 240rpx;
height: 70rpx;
font-size: 28rpx;
font-weight: 500;
.goto-pay-text {
line-height: 28rpx;
}
}
.cancel-btn {
width: 240rpx;
height: 80rpx;
font-size: 26rpx;
background-color: #e5e5e5;
color: $dark-9;
}
}
.title {
font-size: 36rpx;
font-weight: bold;
color: #333333;
}
.subtitle {
font-size: 28rpx;
color: #999999;
}
.cicon-checkbox {
font-size: 36rpx;
color: var(--ui-BG-Main);
}
.cicon-box {
font-size: 36rpx;
color: #999999;
}
</style>