RuHu.Xu 11 hónapja
szülő
commit
91ed769379

+ 4 - 4
pages/order/confirm.vue

@@ -140,7 +140,7 @@
 			</view>
 			<view class="total-box-footer ss-font-28 ss-flex ss-row-right ss-col-center ss-m-r-28">
 				<view class="total-num ss-m-r-20">
-					共{{ state.orderInfo.items.reduce((acc, item) => acc + item.count, 0) }}件
+					共{{ totalItemCount }}件
 				</view>
 				<view>合计:</view>
 				<view class="total-num text-red"> ¥{{ fen2yuan(state.orderInfo.price.payPrice) }} </view>
@@ -207,12 +207,12 @@
 		usedPoint:0, //用户使用的积分 
 		currentTotalPrice:0 //当前的整个订单的总价格
 	});
-	// 返回来的数据根据店铺名过滤
+	
+	// 返回来的数据根据店铺名过滤 TODO
 	const shopsByNames = computed(() => {
 	  const shops = {};
 	  Object.keys(state.orderInfo.shopRespVOMap).forEach(shopId => {
 	    const shopName = state.orderInfo.shopNameMap[shopId];
-		console.log(state.orderInfo.shopRespVOMap)
 	    if (shopName) {
 	      shops[shopName] = state.orderInfo.shopRespVOMap[shopId];
 		  shops[shopName].remark = ""
@@ -336,7 +336,7 @@
 		state.currentMemberPoints = points2point(state.orderInfo.currentQuota)
 		state.currentTotalPrice = fen2yuan(state.orderInfo.price.payPrice)
 	}
-	// 计算属性,重构数据以店铺名称为键
+	
 	
 	
 	

+ 0 - 1
sheep/components/s-goods-card/s-goods-card.vue

@@ -230,7 +230,6 @@
 
   // 初始化
   onMounted(async () => {
-	console.log(spuIds)
     // 加载商品列表
     state.goodsList = await getGoodsListByIds(spuIds.join(','));
     // 只有双列布局时需要

+ 1 - 1
sheep/store/app.js

@@ -138,7 +138,7 @@ const adaptTemplate = async (appTemplate, templateId) => {
 	
 	appTemplate.home = diyTemplate?.home;
 	appTemplate.user = diyTemplate?.user;
-	console.log(diyTemplate.user)
+	
 }
 
 export default app;