|
@@ -1,11 +1,7 @@
|
|
|
-import {
|
|
|
- ref
|
|
|
-} from 'vue';
|
|
|
+import { ref } from 'vue';
|
|
|
import dayjs from 'dayjs';
|
|
|
import $url from '@/sheep/url';
|
|
|
-import {
|
|
|
- formatDate
|
|
|
-} from '@/sheep/util';
|
|
|
+import { formatDate } from '@/sheep/util';
|
|
|
|
|
|
/**
|
|
|
* 格式化销量
|
|
@@ -15,7 +11,7 @@ import {
|
|
|
*/
|
|
|
export function formatSales(type, num) {
|
|
|
let prefix = type !== 'exact' && num < 10 ? '销量' : '已售';
|
|
|
- return formatNum(prefix, type, num)
|
|
|
+ return formatNum(prefix, type, num);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -25,10 +21,9 @@ export function formatSales(type, num) {
|
|
|
* @return {string} 格式化后的销量字符串
|
|
|
*/
|
|
|
export function formatExchange(type, num) {
|
|
|
- return formatNum('已兑换', type, num)
|
|
|
+ return formatNum('已兑换', type, num);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 格式化库存
|
|
|
* @param {'exact' | any} type 格式类型:exact=精确值,其它=大致数量
|
|
@@ -36,7 +31,7 @@ export function formatExchange(type, num) {
|
|
|
* @return {string} 格式化后的销量字符串
|
|
|
*/
|
|
|
export function formatStock(type, num) {
|
|
|
- return formatNum('库存', type, num)
|
|
|
+ return formatNum('库存', type, num);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -47,7 +42,7 @@ export function formatStock(type, num) {
|
|
|
* @return {string} 格式化后的销量字符串
|
|
|
*/
|
|
|
export function formatNum(prefix, type, num) {
|
|
|
- num = (num || 0);
|
|
|
+ num = num || 0;
|
|
|
// 情况一:精确数值
|
|
|
if (type === 'exact') {
|
|
|
return prefix + num;
|
|
@@ -71,7 +66,7 @@ export function formatPrice(e) {
|
|
|
}
|
|
|
|
|
|
// 视频格式后缀列表
|
|
|
-const VIDEO_SUFFIX_LIST = ['.avi', '.mp4']
|
|
|
+const VIDEO_SUFFIX_LIST = ['.avi', '.mp4'];
|
|
|
|
|
|
/**
|
|
|
* 转换商品轮播的链接列表:根据链接的后缀,判断是视频链接还是图片链接
|
|
@@ -80,15 +75,19 @@ const VIDEO_SUFFIX_LIST = ['.avi', '.mp4']
|
|
|
* @return {{src: string, type: 'video' | 'image' }[]} 转换后的链接列表
|
|
|
*/
|
|
|
export function formatGoodsSwiper(urlList) {
|
|
|
- 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
|
|
|
- }
|
|
|
- }) || [];
|
|
|
+ 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,
|
|
|
+ };
|
|
|
+ }) || []
|
|
|
+ );
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -101,9 +100,7 @@ export function formatOrderColor(order) {
|
|
|
if (order.status === 0) {
|
|
|
return 'info-color';
|
|
|
}
|
|
|
- if (order.status === 10 ||
|
|
|
- order.status === 20 ||
|
|
|
- (order.status === 30 && !order.commentStatus)) {
|
|
|
+ if (order.status === 10 || order.status === 20 || (order.status === 30 && !order.commentStatus)) {
|
|
|
return 'warning-color';
|
|
|
}
|
|
|
if (order.status === 30 && order.commentStatus) {
|
|
@@ -146,7 +143,7 @@ export function formatOrderStatus(order) {
|
|
|
*/
|
|
|
export function formatOrderStatusDescription(order) {
|
|
|
if (order.status === 0) {
|
|
|
- return `请在 ${ formatDate(order.payExpireTime) } 前完成支付`;
|
|
|
+ return `请在 ${formatDate(order.payExpireTime)} 前完成支付`;
|
|
|
}
|
|
|
if (order.status === 10) {
|
|
|
return '商家未发货,请耐心等待';
|
|
@@ -169,24 +166,30 @@ export function formatOrderStatusDescription(order) {
|
|
|
* @param order 订单
|
|
|
*/
|
|
|
export function handleOrderButtons(order) {
|
|
|
- order.buttons = []
|
|
|
- if (order.type === 3) { // 查看拼团
|
|
|
+ order.buttons = [];
|
|
|
+ if (order.type === 3) {
|
|
|
+ // 查看拼团
|
|
|
order.buttons.push('combination');
|
|
|
}
|
|
|
- if (order.status === 20) { // 确认收货
|
|
|
+ if (order.status === 20) {
|
|
|
+ // 确认收货
|
|
|
order.buttons.push('confirm');
|
|
|
}
|
|
|
- if (order.logisticsId > 0) { // 查看物流
|
|
|
+ if (order.logisticsId > 0) {
|
|
|
+ // 查看物流
|
|
|
order.buttons.push('express');
|
|
|
}
|
|
|
- if (order.status === 0) { // 取消订单 / 发起支付
|
|
|
+ if (order.status === 0) {
|
|
|
+ // 取消订单 / 发起支付
|
|
|
order.buttons.push('cancel');
|
|
|
order.buttons.push('pay');
|
|
|
}
|
|
|
- if (order.status === 30 && !order.commentStatus) { // 发起评价
|
|
|
+ if (order.status === 30 && !order.commentStatus) {
|
|
|
+ // 发起评价
|
|
|
order.buttons.push('comment');
|
|
|
}
|
|
|
- if (order.status === 40) { // 删除订单
|
|
|
+ if (order.status === 40) {
|
|
|
+ // 删除订单
|
|
|
order.buttons.push('delete');
|
|
|
}
|
|
|
}
|
|
@@ -264,10 +267,12 @@ export function formatAfterSaleStatusDescription(afterSale) {
|
|
|
*/
|
|
|
export function handleAfterSaleButtons(afterSale) {
|
|
|
afterSale.buttons = [];
|
|
|
- if ([10, 20, 30].includes(afterSale.status)) { // 取消订单
|
|
|
+ if ([10, 20, 30].includes(afterSale.status)) {
|
|
|
+ // 取消订单
|
|
|
afterSale.buttons.push('cancel');
|
|
|
}
|
|
|
- if (afterSale.status === 20) { // 退货信息
|
|
|
+ if (afterSale.status === 20) {
|
|
|
+ // 退货信息
|
|
|
afterSale.buttons.push('delivery');
|
|
|
}
|
|
|
}
|
|
@@ -331,7 +336,7 @@ function getDayjsTime(time) {
|
|
|
* @returns {string} 元,例如说 1.00 元
|
|
|
*/
|
|
|
export function fen2yuan(price) {
|
|
|
- return (price / 100.0).toFixed(2)
|
|
|
+ return (price / 100.0).toFixed(2);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -352,134 +357,28 @@ export function convertProductPropertyList(skus) {
|
|
|
let result = [];
|
|
|
for (const sku of skus) {
|
|
|
if (!sku.properties) {
|
|
|
- continue
|
|
|
+ continue;
|
|
|
}
|
|
|
for (const property of sku.properties) {
|
|
|
// ① 先处理属性
|
|
|
- let resultProperty = result.find(item => item.id === property.propertyId)
|
|
|
+ let resultProperty = result.find((item) => item.id === property.propertyId);
|
|
|
if (!resultProperty) {
|
|
|
resultProperty = {
|
|
|
id: property.propertyId,
|
|
|
name: property.propertyName,
|
|
|
- values: []
|
|
|
- }
|
|
|
- result.push(resultProperty)
|
|
|
+ values: [],
|
|
|
+ };
|
|
|
+ result.push(resultProperty);
|
|
|
}
|
|
|
// ② 再处理属性值
|
|
|
- let resultValue = resultProperty.values.find(item => item.id === property.valueId)
|
|
|
+ let resultValue = resultProperty.values.find((item) => item.id === property.valueId);
|
|
|
if (!resultValue) {
|
|
|
resultProperty.values.push({
|
|
|
id: property.valueId,
|
|
|
- name: property.valueName
|
|
|
- })
|
|
|
+ name: property.valueName,
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
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 '';
|
|
|
-}
|
|
|
-// 新增将时间搓转换为开始时间-结束时间的格式
|
|
|
-export function formatDateRange(startTimestamp, endTimestamp) {
|
|
|
- // 定义一个辅助函数来格式化时间戳为 YYYY.MM.DD 格式
|
|
|
- const formatDate = (timestamp) => {
|
|
|
- const date = new Date(timestamp);
|
|
|
- const year = date.getFullYear();
|
|
|
- const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始,所以需要+1
|
|
|
- const day = String(date.getDate()).padStart(2, '0');
|
|
|
- return `${year}.${month}.${day}`;
|
|
|
- };
|
|
|
-
|
|
|
- // 格式化开始和结束时间
|
|
|
- const start = formatDate(startTimestamp);
|
|
|
- const end = formatDate(endTimestamp);
|
|
|
-
|
|
|
- // 返回格式化的日期范围
|
|
|
- return `${start}-${end}`;
|
|
|
-}
|
|
|
-
|
|
|
-//处理活动信息
|
|
|
-export function handList(orders) {
|
|
|
- const typeMap = {
|
|
|
- '1': '秒杀活动',
|
|
|
- '2': '砍价活动',
|
|
|
- '3': '拼团活动',
|
|
|
- '4': '限时折扣',
|
|
|
- '5': '满减送',
|
|
|
- '6': '会员折扣',
|
|
|
- '7': '优惠券',
|
|
|
- '8': '积分'
|
|
|
- };
|
|
|
-
|
|
|
- // 给每个订单对象添加 typeName 属性
|
|
|
- let updatedOrders = orders.map(order => {
|
|
|
- return {
|
|
|
- ...order, // 展开现有的订单对象属性
|
|
|
- typeName: typeMap[order.type] // 添加 typeName 属性
|
|
|
- };
|
|
|
- });
|
|
|
- return updatedOrders
|
|
|
-};
|
|
|
-//根据skuid来修改价格并添加时间
|
|
|
-export function handListPrice(array,array2) {
|
|
|
- // 将 array2 转换为一个以 skuId 为键的对象,以便于快速查找
|
|
|
- const array2Map = array2.reduce((acc, item) => {
|
|
|
- acc[item.skuId] = { price: item.price, type: item.type,endTime:item.endTime };
|
|
|
- return acc;
|
|
|
- }, {});
|
|
|
-
|
|
|
- // 遍历 array 数组并更新 price 和 type
|
|
|
- array.forEach(item => {
|
|
|
- if (array2Map[item.id]) {
|
|
|
- item.oldPrice = item.price
|
|
|
- // 如果在 array2Map 中找到了对应的 skuId(即 id)
|
|
|
- item.price = array2Map[item.id].price;
|
|
|
- item.type = array2Map[item.id].type;
|
|
|
- item.endTime = array2Map[item.id].endTime;
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- // 返回更新后的 array
|
|
|
- return array;
|
|
|
-};
|
|
|
-
|
|
|
-//处理活动数据
|
|
|
-export function handActitList(rules) {
|
|
|
- const rules2 = {
|
|
|
- reduc: rules.map(item => ({
|
|
|
- discountPrice: item.discountPrice,
|
|
|
- limit: item.limit,
|
|
|
- bull: true // 默认为 true
|
|
|
- })),
|
|
|
- cou: rules.map(item => ({
|
|
|
- discountPrice: item.discountPrice,
|
|
|
- value: item.couponCounts.reduce((acc, count) => acc + count, 0), // 计算 couponCounts 中各项之和
|
|
|
- bull: item.givePoint // 对应 givePoint
|
|
|
- })),
|
|
|
- ship: rules.map(item => ({
|
|
|
- discountPrice: item.discountPrice,
|
|
|
- bull: item.freeDelivery // 对应 freeDelivery
|
|
|
- })),
|
|
|
- scor: rules.map(item => ({
|
|
|
- discountPrice: item.discountPrice,
|
|
|
- value: item.point, // 直接使用 point
|
|
|
- bull: item.givePoint // 对应 givePoint
|
|
|
- }))
|
|
|
- };
|
|
|
- return rules2
|
|
|
-};
|