diff --git a/pages/goods/components/groupon/groupon-card-list.vue b/pages/goods/components/groupon/groupon-card-list.vue index 80eb11ef..2fd8f18a 100644 --- a/pages/goods/components/groupon/groupon-card-list.vue +++ b/pages/goods/components/groupon/groupon-card-list.vue @@ -73,7 +73,8 @@ // 初始化 onMounted(async () => { // 查询参团记录 - const { data } = await CombinationApi.getHeadCombinationRecordList(props.modelValue.id, 1 , 10); + // status = 0 表示未成团 + const { data } = await CombinationApi.getHeadCombinationRecordList(props.modelValue.id, 0 , 10); state.list = data; }); diff --git a/pages/goods/groupon.vue b/pages/goods/groupon.vue index e30e9cb0..50bba1c4 100644 --- a/pages/goods/groupon.vue +++ b/pages/goods/groupon.vue @@ -1,3 +1,4 @@ +