Browse Source

2024.09.02
- 购物车页更改购物车数据请求后sku赋值逻辑;

zweiqin 7 months ago
parent
commit
5d7cbc040c
1 changed files with 30 additions and 0 deletions
  1. 30 0
      src/views/threeSelection/shoppingCart/index.vue

+ 30 - 0
src/views/threeSelection/shoppingCart/index.vue

@@ -143,6 +143,7 @@ import {
 import { getShopId } from "@/utils/auth";
 import AddressCom from "./components/addressCom.vue";
 export default {
+	name: 'ShoppingCart',
   created() {
     this.getList();
     this.getVoucher();
@@ -196,6 +197,35 @@ export default {
       this.loading = true;
       try {
         let res = await getShopCarList();
+				res.data.forEach((shopObj) => {
+					shopObj.priceNumber = 0
+					shopObj.rules = []
+					shopObj.currentRules = {}
+					shopObj.ids = 0
+					if (shopObj.cartUserList && shopObj.cartUserList.length) {
+						shopObj.cartUserList && shopObj.cartUserList.forEach((section) => {
+							section.cartSkuList = section.cartSkuList.filter((part) => !(part.shelveState === 0))
+							section.cartSkuList.forEach((part) => {
+								if (part.activityType === 6 && part.selected === 1) {
+									shopObj.priceNumber += part.number
+								}
+							})
+						})
+						// 处理skus数据
+						const tempSkus = []
+						shopObj.cartUserList && shopObj.cartUserList.map((i) => i.cartSkuList).reduce((t, v) => t.concat(v), [])
+							.forEach((part) => {
+								const tempSkuItem = tempSkus.find((i) => i.skuId === part.skuId)
+								if (tempSkuItem) {
+									tempSkuItem.number = tempSkuItem.number + part.number
+									tempSkuItem.total = part.price * part.number
+								} else {
+									tempSkus.push(JSON.parse(JSON.stringify(part)))
+								}
+							})
+						tempSkus.length && (shopObj.skus = tempSkus)
+					}
+				})
         this.tableData = res.data[0]?.skus;
       } finally {
         this.loading = false;