|
@@ -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)
|
|
|
}
|
|
|
- // 计算属性,重构数据以店铺名称为键
|
|
|
+
|
|
|
|
|
|
|
|
|
|