useGoods.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. import { ref } from 'vue';
  2. import dayjs from 'dayjs';
  3. import $url from '@/sheep/url';
  4. import { formatDate } from '@/sheep/util';
  5. /**
  6. * 判断内测资格
  7. * @param {string} username 用户名
  8. * @return {boolean} 是否是内测用户
  9. */
  10. export function isBetaUser(username) {
  11. return username === 'ru10' || username === '迷鹿' || username === '非繁';
  12. }
  13. /**
  14. * 格式化销量
  15. * @param {'exact' | string} type 格式类型:exact=精确值,其它=大致数量
  16. * @param {number} num 销量
  17. * @return {string} 格式化后的销量字符串
  18. */
  19. export function formatSales(type, num) {
  20. let prefix = type !== 'exact' && num < 10 ? '销量' : '已售';
  21. return formatNum(prefix, type, num)
  22. }
  23. /**
  24. * 格式化兑换量
  25. * @param {'exact' | string} type 格式类型:exact=精确值,其它=大致数量
  26. * @param {number} num 销量
  27. * @return {string} 格式化后的销量字符串
  28. */
  29. export function formatExchange(type, num) {
  30. return formatNum('已兑换', type, num)
  31. }
  32. /**
  33. * 格式化库存
  34. * @param {'exact' | any} type 格式类型:exact=精确值,其它=大致数量
  35. * @param {number} num 销量
  36. * @return {string} 格式化后的销量字符串
  37. */
  38. export function formatStock(type, num) {
  39. return formatNum('库存', type, num)
  40. }
  41. /**
  42. * 格式化数字
  43. * @param {string} prefix 前缀
  44. * @param {'exact' | string} type 格式类型:exact=精确值,其它=大致数量
  45. * @param {number} num 销量
  46. * @return {string} 格式化后的销量字符串
  47. */
  48. export function formatNum(prefix, type, num) {
  49. num = (num || 0);
  50. // 情况一:精确数值
  51. if (type === 'exact') {
  52. return prefix + num;
  53. }
  54. // 情况二:小于等于 10
  55. if (num < 10) {
  56. return `${prefix}≤10`;
  57. }
  58. // 情况三:大于 10,除第一位外,其它位都显示为0
  59. // 例如:100 - 199 显示为 100+
  60. // 9000 - 9999 显示为 9000+
  61. let pow = Math.pow(10, `${num}`.length - 1);
  62. return `${prefix}${(num / pow) * pow}+`;
  63. }
  64. // 格式化价格
  65. export function formatPrice(e) {
  66. return e.length === 1 ? e[0] : e.join('~');
  67. }
  68. // 视频格式后缀列表
  69. const VIDEO_SUFFIX_LIST = ['.avi', '.mp4']
  70. /**
  71. * 转换商品轮播的链接列表:根据链接的后缀,判断是视频链接还是图片链接
  72. *
  73. * @param {string[]} urlList 链接列表
  74. * @return {{src: string, type: 'video' | 'image' }[]} 转换后的链接列表
  75. */
  76. export function formatGoodsSwiper(urlList) {
  77. return urlList?.filter(url => url).map((url, key) => {
  78. const isVideo = VIDEO_SUFFIX_LIST.some(suffix => url.includes(suffix));
  79. const type = isVideo ? 'video' : 'image'
  80. const src = $url.cdn(url);
  81. return { type, src }
  82. }) || [];
  83. }
  84. /**
  85. * 格式化订单状态的颜色
  86. *
  87. * @param order 订单
  88. * @return {string} 颜色的 class 名称
  89. */
  90. export function formatOrderColor(order) {
  91. if (order.status === 0) {
  92. return 'info-color';
  93. }
  94. if (order.status === 10
  95. || order.status === 20
  96. || (order.status === 30 && !order.commentStatus)) {
  97. return 'warning-color';
  98. }
  99. if (order.status === 30 && order.commentStatus) {
  100. return 'success-color';
  101. }
  102. return 'danger-color';
  103. }
  104. /**
  105. * 格式化订单状态
  106. *
  107. * @param order 订单
  108. */
  109. export function formatOrderStatus(order) {
  110. // console.log(order.status,order.deliveryType);
  111. if (order.status === 0) {
  112. return '待付款';
  113. }
  114. // 快递发货 虚拟发货都走这条
  115. if (order.status === 10 && order.deliveryType === 1 || order.status === 10 && order.deliveryType === 3) {
  116. return '待发货';
  117. }
  118. if (order.status === 10 && order.deliveryType === 2) {
  119. return '待核销';
  120. }
  121. if (order.status === 20) {
  122. return '待收货';
  123. }
  124. if (order.status === 30 && !order.commentStatus) {
  125. return '待评价';
  126. }
  127. if (order.status === 30 && order.commentStatus) {
  128. return '已完成';
  129. }
  130. return '已关闭';
  131. }
  132. /**
  133. * 格式化订单状态的描述
  134. *
  135. * @param order 订单
  136. */
  137. export function formatOrderStatusDescription(order) {
  138. if (order.status === 0) {
  139. return `请在 ${ formatDate(order.payExpireTime) } 前完成支付`;
  140. }
  141. if (order.status === 10) {
  142. return '商家未发货,请耐心等待';
  143. }
  144. if (order.status === 20) {
  145. return '商家已发货,请耐心等待';
  146. }
  147. if (order.status === 30 && !order.commentStatus) {
  148. return '已收货,快去评价一下吧';
  149. }
  150. if (order.status === 30 && order.commentStatus) {
  151. return '交易完成,感谢您的支持';
  152. }
  153. return '交易关闭';
  154. }
  155. /**
  156. * 处理订单的 button 操作按钮数组
  157. *
  158. * @param order 订单
  159. */
  160. export function handleOrderButtons(order) {
  161. console.log()
  162. order.buttons = []
  163. if (order.type === 3) { // 查看拼团
  164. order.buttons.push('combination');
  165. }
  166. if (order.status === 20) { // 确认收货
  167. order.buttons.push('express');
  168. order.buttons.push('confirm');
  169. }
  170. if (order.logisticsId > 0) { // 查看物流
  171. order.buttons.push('express');
  172. }
  173. if (order.status === 0) { // 取消订单 / 发起支付
  174. order.buttons.push('cancel');
  175. order.buttons.push('pay');
  176. }
  177. if (order.status === 30 && !order.commentStatus) { // 发起评价
  178. order.buttons.push('comment');
  179. }
  180. if (order.status === 40) { // 删除订单
  181. order.buttons.push('delete');
  182. }
  183. if ([10, 20, 30].includes(order.items[0]?.refundStatus)) { // 取消订单
  184. order.buttons.push('aftersaleCancel');
  185. }
  186. // 如果订单是发起了售后,商家同意了。待用户发货回平台
  187. if (order.items[0]?.refundStatus === 20){
  188. order.buttons.push('aftersaleDelivery');
  189. }
  190. }
  191. /**
  192. * 格式化售后状态
  193. *
  194. * @param afterSale 售后
  195. */
  196. export function formatAfterSaleStatus(afterSale) {
  197. if (afterSale.status === 10) {
  198. return '申请售后';
  199. }
  200. if (afterSale.status === 20) {
  201. return '商品待退货';
  202. }
  203. if (afterSale.status === 30) {
  204. return '商家待收货';
  205. }
  206. if (afterSale.status === 40) {
  207. return '等待退款';
  208. }
  209. if (afterSale.status === 50) {
  210. return '退款成功';
  211. }
  212. if (afterSale.status === 61) {
  213. return '买家取消';
  214. }
  215. if (afterSale.status === 62) {
  216. return '商家拒绝';
  217. }
  218. if (afterSale.status === 63) {
  219. return '商家拒收货';
  220. }
  221. return '未知状态';
  222. }
  223. /**
  224. * 格式化售后状态的描述
  225. *
  226. * @param afterSale 售后
  227. */
  228. export function formatAfterSaleStatusDescription(afterSale) {
  229. if (afterSale.status === 10) {
  230. return '退款申请待商家处理';
  231. }
  232. if (afterSale.status === 20) {
  233. return '请退货并填写物流信息';
  234. }
  235. if (afterSale.status === 30) {
  236. return '退货退款申请待商家处理';
  237. }
  238. if (afterSale.status === 40) {
  239. return '等待退款';
  240. }
  241. if (afterSale.status === 50) {
  242. return '退款成功';
  243. }
  244. if (afterSale.status === 61) {
  245. return '退款关闭';
  246. }
  247. if (afterSale.status === 62) {
  248. return `商家不同意退款申请,拒绝原因:${afterSale.auditReason}`;
  249. }
  250. if (afterSale.status === 63) {
  251. return `商家拒绝收货,不同意退款,拒绝原因:${afterSale.auditReason}`;
  252. }
  253. return '未知状态';
  254. }
  255. /**
  256. * 处理售后的 button 操作按钮数组
  257. *
  258. * @param afterSale 售后
  259. */
  260. export function handleAfterSaleButtons(afterSale) {
  261. console.log(afterSale)
  262. afterSale.buttons = [];
  263. if ([10, 20, 30].includes(afterSale.status)) { // 取消订单
  264. afterSale.buttons.push('cancel');
  265. }
  266. if (afterSale.status === 20) { // 退货信息
  267. afterSale.buttons.push('delivery');
  268. }
  269. }
  270. /**
  271. * 倒计时
  272. * @param toTime 截止时间
  273. * @param fromTime 起始时间,默认当前时间
  274. * @return {{s: string, ms: number, h: string, m: string}} 持续时间
  275. */
  276. export function useDurationTime(toTime, fromTime = '') {
  277. toTime = getDayjsTime(toTime);
  278. if (fromTime === '') {
  279. fromTime = dayjs();
  280. }
  281. let duration = ref(toTime - fromTime);
  282. if (duration.value > 0) {
  283. setTimeout(() => {
  284. if (duration.value > 0) {
  285. duration.value -= 1000;
  286. }
  287. }, 1000);
  288. }
  289. let durationTime = dayjs.duration(duration.value);
  290. return {
  291. h: (durationTime.months() * 30 * 24 + durationTime.days() * 24 + durationTime.hours())
  292. .toString()
  293. .padStart(2, '0'),
  294. m: durationTime.minutes().toString().padStart(2, '0'),
  295. s: durationTime.seconds().toString().padStart(2, '0'),
  296. ms: durationTime.$ms,
  297. };
  298. }
  299. /**
  300. * 转换为 Dayjs
  301. * @param {any} time 时间
  302. * @return {dayjs.Dayjs}
  303. */
  304. function getDayjsTime(time) {
  305. time = time.toString();
  306. if (time.indexOf('-') > 0) {
  307. // 'date'
  308. return dayjs(time);
  309. }
  310. if (time.length > 10) {
  311. // 'timestamp'
  312. return dayjs(parseInt(time));
  313. }
  314. if (time.length === 10) {
  315. // 'unixTime'
  316. return dayjs.unix(parseInt(time));
  317. }
  318. }
  319. /**
  320. * 将分转成元
  321. *
  322. * @param price 分,例如说 100 分
  323. * @returns {string} 元,例如说 1.00 元
  324. */
  325. export function fen2yuan(price) {
  326. return (price / 100.0).toFixed(2)
  327. }
  328. /**
  329. * 将分转成元
  330. *
  331. * @param price 分,例如说 100 分
  332. * @returns {string} 元,例如说 1.000000 元
  333. */
  334. export function fen2yuan6(price) {
  335. return (price / 100.0).toFixed(6)
  336. }
  337. /**
  338. * 将后台佣金转换为可使用佣金
  339. *
  340. * @param point 分,例如说 1000000 分
  341. * @returns {string} 分,例如说 1.00 分
  342. */
  343. export function points2point(point) {
  344. return (point / 1000000.0).toFixed(3).slice(0, -1) // 干掉四舍五入 实际返回不四舍五入的两位小数
  345. }
  346. /**
  347. * 从商品 SKU 数组中,转换出商品属性的数组
  348. *
  349. * 类似结构:[{
  350. * id: // 属性的编号
  351. * name: // 属性的名字
  352. * values: [{
  353. * id: // 属性值的编号
  354. * name: // 属性值的名字
  355. * }]
  356. * }]
  357. *
  358. * @param skus 商品 SKU 数组
  359. */
  360. export function convertProductPropertyList(skus) {
  361. let result = [];
  362. for (const sku of skus) {
  363. if (!sku.properties) {
  364. continue
  365. }
  366. for (const property of sku.properties) {
  367. // ① 先处理属性
  368. let resultProperty = result.find(item => item.id === property.propertyId)
  369. if (!resultProperty) {
  370. resultProperty = {
  371. id: property.propertyId,
  372. name: property.propertyName,
  373. values: []
  374. }
  375. result.push(resultProperty)
  376. }
  377. // ② 再处理属性值
  378. let resultValue = resultProperty.values.find(item => item.id === property.valueId)
  379. if (!resultValue) {
  380. resultProperty.values.push({
  381. id: property.valueId,
  382. name: property.valueName
  383. })
  384. }
  385. }
  386. }
  387. return result;
  388. }
  389. /**
  390. * 格式化满减送活动的规则
  391. *
  392. * @param activity 活动信息
  393. * @param rule 优惠规格
  394. * @returns {string} 规格字符串
  395. */
  396. export function formatRewardActivityRule(activity, rule) {
  397. if (activity.conditionType === 10) {
  398. return `满 ${fen2yuan(rule.limit)} 元减 ${fen2yuan(rule.discountPrice)} 元`;
  399. }
  400. if (activity.conditionType === 20) {
  401. return `满 ${rule.limit} 件减 ${fen2yuan(rule.discountPrice)} 元`;
  402. }
  403. return '';
  404. }