Commit 4c538a97 authored by beisir's avatar beisir

feat:取消活动入口列表页数据修改

parent fcf63f29
...@@ -259,7 +259,6 @@ export default { ...@@ -259,7 +259,6 @@ export default {
if (res.size) { if (res.size) {
this.loading = false; this.loading = false;
this.showLoading = false; this.showLoading = false;
res.items[5].goodsCount = 0;
this.goodsList = res.items || []; this.goodsList = res.items || [];
if (!res.hasNext) { if (!res.hasNext) {
this.finished = true; this.finished = true;
......
...@@ -56,14 +56,14 @@ ...@@ -56,14 +56,14 @@
> >
查看订单 查看订单
</cr-button> </cr-button>
<!-- v-if="item.showOrderDetail" -->
<!-- 支付中按钮跳转支付页面 --> <!-- 支付中按钮跳转支付页面 -->
<cr-button <cr-button
v-if="item.openGroupStatus === 0"
size="small" size="small"
plain plain
type="primary" type="primary"
shape="circle" shape="circle"
@click.stop="goGroupDetails(item)" @click.stop="goGroupPayPages(item)"
> >
去支付 去支付
</cr-button> </cr-button>
...@@ -152,6 +152,9 @@ export default { ...@@ -152,6 +152,9 @@ export default {
newUrl: `/pages/order/orderDetail?orderNo=${skuInfo.orderNo}` newUrl: `/pages/order/orderDetail?orderNo=${skuInfo.orderNo}`
}); });
}, },
goGroupPayPages(skuInfo) {
this.$router.push(`/pay?orderNo=${skuInfo.orderNo}`);
},
async openShareEvent(skuInfo) { async openShareEvent(skuInfo) {
let options = await this.getShareData(skuInfo); let options = await this.getShareData(skuInfo);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment