【功能完善】下单界面,接入门店自提的开关

pull/98/MERGE
YunaiV 2024-09-13 19:21:22 +08:00
parent 55131bf0c3
commit 49e8b9f5c3
2 changed files with 75 additions and 52 deletions

View File

@ -1,52 +1,69 @@
<!-- 下单界面收货地址 or 自提门店的选择组件 --> <!-- 下单界面收货地址 or 自提门店的选择组件 -->
<template> <template>
<view class="allAddress" :style="state.isPickUp ? '':'padding-top:10rpx;'"> <view class="allAddress" :style="state.isPickUp ? '' : 'padding-top:10rpx;'">
<view class="nav flex flex-wrap"> <view class="nav flex flex-wrap">
<view class="item font-color" :class="state.deliveryType === 1 ? 'on' : 'on2'" <view
@tap="switchDeliveryType(1)" v-if='state.isPickUp' /> class="item font-color"
<view class="item font-color" :class="state.deliveryType === 2 ? 'on' : 'on2'" :class="state.deliveryType === 1 ? 'on' : 'on2'"
@tap="switchDeliveryType(2)" v-if='state.isPickUp' /> @tap="switchDeliveryType(1)"
v-if="state.isPickUp"
/>
<view
class="item font-color"
:class="state.deliveryType === 2 ? 'on' : 'on2'"
@tap="switchDeliveryType(2)"
v-if="state.isPickUp"
/>
</view> </view>
<!-- 情况一收货地址的选择 --> <!-- 情况一收货地址的选择 -->
<view class='address flex flex-wrap flex-center ss-row-between' @tap='onSelectAddress' v-if='state.deliveryType === 1' <view
:style="state.isPickUp ? '':'border-top-left-radius: 14rpx;border-top-right-radius: 14rpx;'"> class="address flex flex-wrap flex-center ss-row-between"
<view class='addressCon' v-if="state.addressInfo.name"> @tap="onSelectAddress"
<view class='name'>{{ state.addressInfo.name }} v-if="state.deliveryType === 1"
<text class='phone'>{{ state.addressInfo.mobile }}</text> :style="state.isPickUp ? '' : 'border-top-left-radius: 14rpx;border-top-right-radius: 14rpx;'"
>
<view class="addressCon" v-if="state.addressInfo.name">
<view class="name"
>{{ state.addressInfo.name }}
<text class="phone">{{ state.addressInfo.mobile }}</text>
</view> </view>
<view class="flex flex-wrap"> <view class="flex flex-wrap">
<text class='default font-color' v-if="state.addressInfo.defaultStatus">[]</text> <text class="default font-color" v-if="state.addressInfo.defaultStatus">[]</text>
<text class="line2">{{ state.addressInfo.areaName }} {{ state.addressInfo.detailAddress }}</text> <text class="line2"
>{{ state.addressInfo.areaName }} {{ state.addressInfo.detailAddress }}</text
>
</view> </view>
</view> </view>
<view class='addressCon' v-else> <view class="addressCon" v-else>
<view class='setaddress'>设置收货地址</view> <view class="setaddress">设置收货地址</view>
</view> </view>
<view class='iconfont'> <view class="iconfont">
<view class="ss-rest-button"> <view class="ss-rest-button">
<text class="_icon-forward" /> <text class="_icon-forward" />
</view> </view>
</view> </view>
</view> </view>
<!-- 情况二门店的选择 --> <!-- 情况二门店的选择 -->
<view class='address flex flex-wrap flex-center ss-row-between' v-else @tap="onSelectAddress"> <view class="address flex flex-wrap flex-center ss-row-between" v-else @tap="onSelectAddress">
<view class='addressCon' v-if="state.pickUpInfo.name"> <view class="addressCon" v-if="state.pickUpInfo.name">
<view class='name'>{{ state.pickUpInfo.name }} <view class="name"
<text class='phone'>{{ state.pickUpInfo.phone }}</text> >{{ state.pickUpInfo.name }}
</view> <text class="phone">{{ state.pickUpInfo.phone }}</text>
<view class="line1"> {{ state.pickUpInfo.areaName }}{{ ', ' + state.pickUpInfo.detailAddress }}
</view>
</view> </view>
<view class='addressCon' v-else> <view class="line1">
<view class='setaddress'>选择自提门店</view> {{ state.pickUpInfo.areaName }}{{ ', ' + state.pickUpInfo.detailAddress }}
</view> </view>
<view class='iconfont'> </view>
<view class="ss-rest-button"> <view class="addressCon" v-else>
<text class="_icon-forward" /> <view class="setaddress">选择自提门店</view>
</view> </view>
<view class="iconfont">
<view class="ss-rest-button">
<text class="_icon-forward" />
</view> </view>
</view>
</view> </view>
<view class='line'> <view class="line">
<image :src="sheep.$url.static('/static/images/line.png', 'local')" /> <image :src="sheep.$url.static('/static/images/line.png', 'local')" />
</view> </view>
</view> </view>
@ -61,13 +78,13 @@
modelValue: { modelValue: {
type: Object, type: Object,
default() {}, default() {},
} },
}); });
const emits = defineEmits(['update:modelValue']); const emits = defineEmits(['update:modelValue']);
// computed // computed
const state = computed({ const state = computed({
get(){ get() {
return new Proxy(props.modelValue, { return new Proxy(props.modelValue, {
set(obj, name, val) { set(obj, name, val) {
emits('update:modelValue', { emits('update:modelValue', {
@ -75,21 +92,21 @@
[name]: val, [name]: val,
}); });
return true; return true;
} },
}) });
}, },
set(val){ set(val) {
emits('update:modelValue', val); emits('update:modelValue', val);
} },
}) });
// //
function onSelectAddress() { function onSelectAddress() {
let emitName = 'SELECT_ADDRESS' let emitName = 'SELECT_ADDRESS';
let addressPage = '/pages/user/address/list?type=select'; let addressPage = '/pages/user/address/list?type=select';
if (state.value.deliveryType === 2){ if (state.value.deliveryType === 2) {
emitName = 'SELECT_PICK_UP_INFO' emitName = 'SELECT_PICK_UP_INFO';
addressPage = '/pages/user/goods_details_store/index' addressPage = '/pages/user/goods_details_store/index';
} }
uni.$once(emitName, (e) => { uni.$once(emitName, (e) => {
changeConsignee(e.addressInfo); changeConsignee(e.addressInfo);
@ -100,26 +117,26 @@
// & // &
async function changeConsignee(addressInfo = {}) { async function changeConsignee(addressInfo = {}) {
if (!isEmpty(addressInfo)) { if (!isEmpty(addressInfo)) {
if (state.value.deliveryType === 1){ if (state.value.deliveryType === 1) {
state.value.addressInfo = addressInfo; state.value.addressInfo = addressInfo;
} }
if (state.value.deliveryType === 2){ if (state.value.deliveryType === 2) {
state.value.pickUpInfo = addressInfo; state.value.pickUpInfo = addressInfo;
} }
} }
} }
// //
const switchDeliveryType = (type) =>{ const switchDeliveryType = (type) => {
state.value.deliveryType = type; state.value.deliveryType = type;
} };
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.allAddress .font-color{ .allAddress .font-color {
color: #E93323!important color: #e93323 !important;
} }
.line2{ .line2 {
width: 504rpx; width: 504rpx;
} }
.textR { .textR {
@ -202,7 +219,7 @@
.allAddress .nav .item.on::before { .allAddress .nav .item.on::before {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
content: "快递配送"; content: '快递配送';
font-size: 28rpx; font-size: 28rpx;
display: block; display: block;
height: 0; height: 0;
@ -217,7 +234,7 @@
} }
.allAddress .nav .item:nth-of-type(2).on::before { .allAddress .nav .item:nth-of-type(2).on::before {
content: "到店自提"; content: '到店自提';
border-width: 0 0 80rpx 20rpx; border-width: 0 0 80rpx 20rpx;
border-radius: 36rpx 14rpx 0 0; border-radius: 36rpx 14rpx 0 0;
} }
@ -229,7 +246,7 @@
.allAddress .nav .item.on2::before { .allAddress .nav .item.on2::before {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
content: "到店自提"; content: '到店自提';
font-size: 28rpx; font-size: 28rpx;
display: block; display: block;
height: 0; height: 0;
@ -243,7 +260,7 @@
} }
.allAddress .nav .item:nth-of-type(1).on2::before { .allAddress .nav .item:nth-of-type(1).on2::before {
content: "快递配送"; content: '快递配送';
border-width: 0 60rpx 60rpx 0; border-width: 0 60rpx 60rpx 0;
border-radius: 14rpx 36rpx 0 0; border-radius: 14rpx 36rpx 0 0;
} }

View File

@ -212,6 +212,7 @@
import AddressSelection from '@/pages/order/addressSelection.vue'; import AddressSelection from '@/pages/order/addressSelection.vue';
import sheep from '@/sheep'; import sheep from '@/sheep';
import OrderApi from '@/sheep/api/trade/order'; import OrderApi from '@/sheep/api/trade/order';
import TradeConfigApi from '@/sheep/api/trade/config';
import { fen2yuan } from '@/sheep/hooks/useGoods'; import { fen2yuan } from '@/sheep/hooks/useGoods';
const state = reactive({ const state = reactive({
@ -230,7 +231,7 @@
const addressState = ref({ const addressState = ref({
addressInfo: {}, // addressInfo: {}, //
deliveryType: 1, // 1-2- deliveryType: 1, // 1-2-
isPickUp: true, // TODO puhui999: isPickUp: true, //
pickUpInfo: {}, // pickUpInfo: {}, //
receiverName: '', // receiverName: '', //
receiverMobile: '', // receiverMobile: '', //
@ -343,6 +344,11 @@
} }
state.orderPayload = JSON.parse(options.data); state.orderPayload = JSON.parse(options.data);
await getOrderInfo(); await getOrderInfo();
//
const { data, code } = await TradeConfigApi.getTradeConfig();
if (code === 0) {
addressState.value.isPickUp = data.deliveryPickUpEnabled;
}
}); });
// 使 watch // 使 watch