|
@@ -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;
|