diff --git a/pages/goods/point.vue b/pages/goods/point.vue
index ee3707c0..0360766d 100644
--- a/pages/goods/point.vue
+++ b/pages/goods/point.vue
@@ -1,23 +1,24 @@
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
- ¥{{ goodsPrice.price }}
- +
-
-
- {{ goodsPrice.score }}
+
+
+
+
+ {{ getShowPriceText }}
+
+
+
+
+
+ 积分价
-
- {{ formatExchange(state.goodsInfo.sales_show_type, state.goodsInfo.sales) }}
+
+
+
+ 原价
+
+ {{ fen2yuan(state.selectedSku.marketPrice || state.goodsInfo.marketPrice) }}
+
-
- 原价:¥{{ state.selectedSkuPrice.original_price || state.goodsInfo.original_price }}
-
- {{ state.goodsInfo.title }}
- {{ state.goodsInfo.subtitle }}
+
+ {{ state.goodsInfo.name || '' }}
+ {{ state.goodsInfo.introduction }}
-
-
-
+
-
+
-
-
-
-
+
+
+
diff --git a/pages/order/confirm.vue b/pages/order/confirm.vue
index d090aecd..697f6b1d 100644
--- a/pages/order/confirm.vue
+++ b/pages/order/confirm.vue
@@ -294,6 +294,7 @@
combinationActivityId: state.orderPayload.combinationActivityId,
combinationHeadId: state.orderPayload.combinationHeadId,
seckillActivityId: state.orderPayload.seckillActivityId,
+ pointActivityId: state.orderPayload.pointActivityId,
});
if (code !== 0) {
return;
@@ -324,6 +325,7 @@
combinationActivityId: state.orderPayload.combinationActivityId,
combinationHeadId: state.orderPayload.combinationHeadId,
seckillActivityId: state.orderPayload.seckillActivityId,
+ pointActivityId: state.orderPayload.pointActivityId,
});
if (code !== 0) {
return;
diff --git a/sheep/util/const.js b/sheep/util/const.js
index 9c22807f..ec6078db 100644
--- a/sheep/util/const.js
+++ b/sheep/util/const.js
@@ -116,7 +116,7 @@ export const PromotionActivityTypeEnum = {
},
POINT: {
type: 4,
- name: '',
+ name: '积分商城',
},
};