【缺陷修复】购物车提交时的配送方式校验
parent
164589f634
commit
34be99fccb
|
@ -109,7 +109,6 @@
|
||||||
import { computed, reactive } from 'vue';
|
import { computed, reactive } from 'vue';
|
||||||
import { fen2yuan } from '@/sheep/hooks/useGoods';
|
import { fen2yuan } from '@/sheep/hooks/useGoods';
|
||||||
import { isEmpty } from '@/sheep/helper/utils';
|
import { isEmpty } from '@/sheep/helper/utils';
|
||||||
import { DeliveryTypeEnum } from '@/sheep/util/const';
|
|
||||||
|
|
||||||
const sys_navBar = sheep.$platform.navbar;
|
const sys_navBar = sheep.$platform.navbar;
|
||||||
const cart = sheep.$store('cart');
|
const cart = sheep.$store('cart');
|
||||||
|
@ -158,37 +157,60 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 校验配送方式 */
|
/**
|
||||||
function validateDeliveryType(spuIds) {
|
* 校验配送方式冲突
|
||||||
return new Promise(async (resolve, reject) => {
|
*
|
||||||
const { data } = await SpuApi.getSpuListByIds(spuIds.join(','));
|
* @param {string[]} spuIds - 商品ID数组
|
||||||
if (isEmpty(data)) {
|
* @returns {Promise<void>}
|
||||||
reject('获取商品信息失败!!!');
|
* @throws {Error} 当配送方式冲突或获取商品信息失败时抛出错误
|
||||||
return;
|
*/
|
||||||
|
async function validateDeliveryType(spuIds) {
|
||||||
|
// 获取商品信息
|
||||||
|
const { data: spuList } = await SpuApi.getSpuListByIds(spuIds.join(','));
|
||||||
|
if (isEmpty(spuList)) {
|
||||||
|
sheep.$helper.toast('未找到商品信息');
|
||||||
|
throw new Error('未找到商品信息');
|
||||||
}
|
}
|
||||||
let onlyExpress = false; // 只快递
|
// 获取所有商品的配送方式列表
|
||||||
let onlyPickup = false; // 只自提
|
const deliveryTypesList = spuList.map(item => item.deliveryTypes);
|
||||||
// TODO @puhui999:这里需要比对,A 商品支持自提、B 商品支持快递,这样导致 A 和 B 无法一起下单。
|
// 检查配送方式冲突
|
||||||
const deliveryTypes = data.map((item) => item.deliveryTypes);
|
const hasConflict = checkDeliveryConflicts(deliveryTypesList);
|
||||||
for (const deliveryType of deliveryTypes) {
|
if (hasConflict) {
|
||||||
// 情况一:两种配送方式都支持
|
sheep.$helper.toast('选中商品支持的配送方式冲突,不允许提交');
|
||||||
if (deliveryType.length > 1) {
|
throw new Error('选中商品支持的配送方式冲突,不允许提交');
|
||||||
continue;
|
|
||||||
}
|
|
||||||
// 情况二:只支持一种
|
|
||||||
if (deliveryType[0] === DeliveryTypeEnum.EXPRESS.type) {
|
|
||||||
onlyExpress = true;
|
|
||||||
} else if (deliveryType[0] === DeliveryTypeEnum.PICK_UP.type) {
|
|
||||||
onlyPickup = true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (onlyExpress || onlyPickup) {
|
|
||||||
reject('选中商品存在只支持特定配送方式的情况不允许提交!!!');
|
/**
|
||||||
sheep.$helper.toast('选中商品存在只支持特定配送方式的情况不允许提交!!!');
|
* 检查配送方式列表中是否存在冲突
|
||||||
return;
|
* @description
|
||||||
|
* 示例场景:
|
||||||
|
* A 商品支持:[快递, 自提]
|
||||||
|
* B 商品支持:[快递]
|
||||||
|
* C 商品支持:[自提]
|
||||||
|
*
|
||||||
|
* 对比结果:
|
||||||
|
* A 和 B:不冲突 (有交集:快递)
|
||||||
|
* A 和 C:不冲突 (有交集:自提)
|
||||||
|
* B 和 C:冲突 (无交集)
|
||||||
|
* @param {Array<Array<number>>} deliveryTypesList - 配送方式列表的数组
|
||||||
|
* @returns {boolean} 是否存在冲突
|
||||||
|
*/
|
||||||
|
function checkDeliveryConflicts(deliveryTypesList) {
|
||||||
|
for (let i = 0; i < deliveryTypesList.length - 1; i++) {
|
||||||
|
const currentTypes = deliveryTypesList[i];
|
||||||
|
for (let j = i + 1; j < deliveryTypesList.length; j++) {
|
||||||
|
const nextTypes = deliveryTypesList[j];
|
||||||
|
// 检查是否没有交集(即冲突)
|
||||||
|
const hasNoIntersection = !currentTypes.some(type =>
|
||||||
|
nextTypes.includes(type),
|
||||||
|
);
|
||||||
|
if (hasNoIntersection) {
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
resolve();
|
}
|
||||||
});
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function onNumberChange(e, cartItem) {
|
function onNumberChange(e, cartItem) {
|
||||||
|
|
Loading…
Reference in New Issue