zyejMAll-mobile/sheep/hooks/useGoods.js

399 lines
9.6 KiB
JavaScript
Raw Normal View History

2024-08-07 10:31:42 +08:00
import { ref } from 'vue';
import dayjs from 'dayjs';
import $url from '@/sheep/url';
import { formatDate } from '@/sheep/util';
/**
* 格式化销量
* @param {'exact' | string} type 格式类型exact=精确值其它=大致数量
* @param {number} num 销量
* @return {string} 格式化后的销量字符串
*/
export function formatSales(type, num) {
let prefix = type !== 'exact' && num < 10 ? '销量' : '已售';
2024-08-07 21:40:27 +08:00
return formatNum(prefix, type, num);
2024-08-07 10:31:42 +08:00
}
/**
* 格式化兑换量
* @param {'exact' | string} type 格式类型exact=精确值其它=大致数量
* @param {number} num 销量
* @return {string} 格式化后的销量字符串
*/
export function formatExchange(type, num) {
2024-08-07 21:40:27 +08:00
return formatNum('已兑换', type, num);
2024-08-07 10:31:42 +08:00
}
/**
* 格式化库存
* @param {'exact' | any} type 格式类型exact=精确值其它=大致数量
* @param {number} num 销量
* @return {string} 格式化后的销量字符串
*/
export function formatStock(type, num) {
2024-08-07 21:40:27 +08:00
return formatNum('库存', type, num);
2024-08-07 10:31:42 +08:00
}
/**
* 格式化数字
* @param {string} prefix 前缀
* @param {'exact' | string} type 格式类型exact=精确值其它=大致数量
* @param {number} num 销量
* @return {string} 格式化后的销量字符串
*/
export function formatNum(prefix, type, num) {
2024-08-07 21:40:27 +08:00
num = num || 0;
2024-08-07 10:31:42 +08:00
// 情况一:精确数值
if (type === 'exact') {
return prefix + num;
}
// 情况二:小于等于 10
if (num < 10) {
return `${prefix}≤10`;
}
// 情况三:大于 10除第一位外其它位都显示为0
// 例如100 - 199 显示为 100+
// 9000 - 9999 显示为 9000+
const numStr = num.toString();
const first = numStr[0];
const other = '0'.repeat(numStr.length - 1);
return `${prefix}${first}${other}+`;
}
// 格式化价格
export function formatPrice(e) {
return e.length === 1 ? e[0] : e.join('~');
}
// 视频格式后缀列表
2024-08-07 21:40:27 +08:00
const VIDEO_SUFFIX_LIST = ['.avi', '.mp4'];
2024-08-07 10:31:42 +08:00
/**
* 转换商品轮播的链接列表根据链接的后缀判断是视频链接还是图片链接
*
* @param {string[]} urlList 链接列表
* @return {{src: string, type: 'video' | 'image' }[]} 转换后的链接列表
*/
export function formatGoodsSwiper(urlList) {
2024-08-07 21:40:27 +08:00
return (
urlList
?.filter((url) => url)
.map((url, key) => {
const isVideo = VIDEO_SUFFIX_LIST.some((suffix) => url.includes(suffix));
const type = isVideo ? 'video' : 'image';
const src = $url.cdn(url);
return { type, src };
}) || []
);
2024-08-07 10:31:42 +08:00
}
/**
* 格式化订单状态的颜色
*
* @param order 订单
* @return {string} 颜色的 class 名称
*/
export function formatOrderColor(order) {
if (order.status === 0) {
return 'info-color';
}
2024-08-07 21:40:27 +08:00
if (order.status === 10 || order.status === 20 || (order.status === 30 && !order.commentStatus)) {
2024-08-07 10:31:42 +08:00
return 'warning-color';
}
if (order.status === 30 && order.commentStatus) {
return 'success-color';
}
return 'danger-color';
}
/**
* 格式化订单状态
*
* @param order 订单
*/
export function formatOrderStatus(order) {
if (order.status === 0) {
return '待付款';
}
if (order.status === 10 && order.deliveryType === 1) {
return '待发货';
}
if (order.status === 10 && order.deliveryType === 2) {
return '待核销';
}
if (order.status === 20) {
return '待收货';
}
if (order.status === 30 && !order.commentStatus) {
return '待评价';
}
if (order.status === 30 && order.commentStatus) {
return '已完成';
}
return '已关闭';
}
/**
* 格式化订单状态的描述
*
* @param order 订单
*/
export function formatOrderStatusDescription(order) {
if (order.status === 0) {
2024-08-07 21:40:27 +08:00
return `请在 ${formatDate(order.payExpireTime)} 前完成支付`;
2024-08-07 10:31:42 +08:00
}
if (order.status === 10) {
return '商家未发货,请耐心等待';
}
if (order.status === 20) {
return '商家已发货,请耐心等待';
}
if (order.status === 30 && !order.commentStatus) {
return '已收货,快去评价一下吧';
}
if (order.status === 30 && order.commentStatus) {
return '交易完成,感谢您的支持';
}
return '交易关闭';
}
/**
* 处理订单的 button 操作按钮数组
*
* @param order 订单
*/
export function handleOrderButtons(order) {
2024-08-07 21:40:27 +08:00
order.buttons = [];
if (order.type === 3) {
// 查看拼团
2024-08-07 10:31:42 +08:00
order.buttons.push('combination');
}
2024-08-07 21:40:27 +08:00
if (order.status === 20) {
// 确认收货
2024-08-07 10:31:42 +08:00
order.buttons.push('confirm');
}
2024-08-07 21:40:27 +08:00
if (order.logisticsId > 0) {
// 查看物流
2024-08-07 10:31:42 +08:00
order.buttons.push('express');
}
2024-08-07 21:40:27 +08:00
if (order.status === 0) {
// 取消订单 / 发起支付
2024-08-07 10:31:42 +08:00
order.buttons.push('cancel');
order.buttons.push('pay');
}
2024-08-07 21:40:27 +08:00
if (order.status === 30 && !order.commentStatus) {
// 发起评价
2024-08-07 10:31:42 +08:00
order.buttons.push('comment');
}
2024-08-07 21:40:27 +08:00
if (order.status === 40) {
// 删除订单
2024-08-07 10:31:42 +08:00
order.buttons.push('delete');
}
}
/**
* 格式化售后状态
*
* @param afterSale 售后
*/
export function formatAfterSaleStatus(afterSale) {
if (afterSale.status === 10) {
return '申请售后';
}
if (afterSale.status === 20) {
return '商品待退货';
}
if (afterSale.status === 30) {
return '商家待收货';
}
if (afterSale.status === 40) {
return '等待退款';
}
if (afterSale.status === 50) {
return '退款成功';
}
if (afterSale.status === 61) {
return '买家取消';
}
if (afterSale.status === 62) {
return '商家拒绝';
}
if (afterSale.status === 63) {
return '商家拒收货';
}
return '未知状态';
}
/**
* 格式化售后状态的描述
*
* @param afterSale 售后
*/
export function formatAfterSaleStatusDescription(afterSale) {
if (afterSale.status === 10) {
return '退款申请待商家处理';
}
if (afterSale.status === 20) {
return '请退货并填写物流信息';
}
if (afterSale.status === 30) {
return '退货退款申请待商家处理';
}
if (afterSale.status === 40) {
return '等待退款';
}
if (afterSale.status === 50) {
return '退款成功';
}
if (afterSale.status === 61) {
return '退款关闭';
}
if (afterSale.status === 62) {
return `商家不同意退款申请,拒绝原因:${afterSale.auditReason}`;
}
if (afterSale.status === 63) {
return `商家拒绝收货,不同意退款,拒绝原因:${afterSale.auditReason}`;
}
return '未知状态';
}
/**
* 处理售后的 button 操作按钮数组
*
* @param afterSale 售后
*/
export function handleAfterSaleButtons(afterSale) {
afterSale.buttons = [];
2024-08-07 21:40:27 +08:00
if ([10, 20, 30].includes(afterSale.status)) {
// 取消订单
2024-08-07 10:31:42 +08:00
afterSale.buttons.push('cancel');
}
2024-08-07 21:40:27 +08:00
if (afterSale.status === 20) {
// 退货信息
2024-08-07 10:31:42 +08:00
afterSale.buttons.push('delivery');
}
}
/**
* 倒计时
* @param toTime 截止时间
* @param fromTime 起始时间默认当前时间
* @return {{s: string, ms: number, h: string, m: string}} 持续时间
*/
export function useDurationTime(toTime, fromTime = '') {
toTime = getDayjsTime(toTime);
if (fromTime === '') {
fromTime = dayjs();
}
let duration = ref(toTime - fromTime);
if (duration.value > 0) {
setTimeout(() => {
if (duration.value > 0) {
duration.value -= 1000;
}
}, 1000);
}
let durationTime = dayjs.duration(duration.value);
return {
h: (durationTime.months() * 30 * 24 + durationTime.days() * 24 + durationTime.hours())
.toString()
.padStart(2, '0'),
m: durationTime.minutes().toString().padStart(2, '0'),
s: durationTime.seconds().toString().padStart(2, '0'),
ms: durationTime.$ms,
};
}
/**
* 转换为 Dayjs
* @param {any} time 时间
* @return {dayjs.Dayjs}
*/
function getDayjsTime(time) {
time = time.toString();
if (time.indexOf('-') > 0) {
// 'date'
return dayjs(time);
}
if (time.length > 10) {
// 'timestamp'
return dayjs(parseInt(time));
}
if (time.length === 10) {
// 'unixTime'
return dayjs.unix(parseInt(time));
}
}
/**
* 将分转成元
*
* @param price 例如说 100
* @returns {string} 例如说 1.00
*/
export function fen2yuan(price) {
2024-08-07 21:40:27 +08:00
return (price / 100.0).toFixed(2);
2024-08-07 10:31:42 +08:00
}
/**
* 从商品 SKU 数组中转换出商品属性的数组
*
* 类似结构[{
* id: // 属性的编号
* name: // 属性的名字
* values: [{
* id: // 属性值的编号
* name: // 属性值的名字
* }]
* }]
*
* @param skus 商品 SKU 数组
*/
export function convertProductPropertyList(skus) {
let result = [];
for (const sku of skus) {
if (!sku.properties) {
2024-08-07 21:40:27 +08:00
continue;
2024-08-07 10:31:42 +08:00
}
for (const property of sku.properties) {
// ① 先处理属性
2024-08-07 21:40:27 +08:00
let resultProperty = result.find((item) => item.id === property.propertyId);
2024-08-07 10:31:42 +08:00
if (!resultProperty) {
resultProperty = {
id: property.propertyId,
name: property.propertyName,
2024-08-07 21:40:27 +08:00
values: [],
};
result.push(resultProperty);
2024-08-07 10:31:42 +08:00
}
// ② 再处理属性值
2024-08-07 21:40:27 +08:00
let resultValue = resultProperty.values.find((item) => item.id === property.valueId);
2024-08-07 10:31:42 +08:00
if (!resultValue) {
resultProperty.values.push({
id: property.valueId,
2024-08-07 21:40:27 +08:00
name: property.valueName,
});
2024-08-07 10:31:42 +08:00
}
}
}
return result;
}
/**
* 格式化满减送活动的规则
*
* @param activity 活动信息
* @param rule 优惠规格
* @returns {string} 规格字符串
*/
export function formatRewardActivityRule(activity, rule) {
if (activity.conditionType === 10) {
return `${fen2yuan(rule.limit)} 元减 ${fen2yuan(rule.discountPrice)}`;
}
if (activity.conditionType === 20) {
return `${rule.limit} 件减 ${fen2yuan(rule.discountPrice)}`;
}
return '';
}