【修复】拼团装修组件,跳转拼团商品界面的 id 不正确的问题
parent
c3f3c44e63
commit
68d2fc4c24
|
|
@ -27,8 +27,7 @@
|
||||||
:bottomRadius="data.borderRadiusBottom"
|
:bottomRadius="data.borderRadiusBottom"
|
||||||
@click="
|
@click="
|
||||||
sheep.$router.go('/pages/goods/groupon', {
|
sheep.$router.go('/pages/goods/groupon', {
|
||||||
id: product.id,
|
id: props.data.activityId,
|
||||||
activity_id: props.data.activityId,
|
|
||||||
})
|
})
|
||||||
"
|
"
|
||||||
></s-goods-column>
|
></s-goods-column>
|
||||||
|
|
@ -54,8 +53,7 @@
|
||||||
:bottomRadius="data.borderRadiusBottom"
|
:bottomRadius="data.borderRadiusBottom"
|
||||||
@click="
|
@click="
|
||||||
sheep.$router.go('/pages/goods/groupon', {
|
sheep.$router.go('/pages/goods/groupon', {
|
||||||
id: product.id,
|
id: props.data.activityId,
|
||||||
activity_id: props.data.activityId,
|
|
||||||
})
|
})
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -130,7 +130,7 @@ const decryptSpm = (spm) => {
|
||||||
query = shareParamsArray[2].split(',');
|
query = shareParamsArray[2].split(',');
|
||||||
shareParams.query = {
|
shareParams.query = {
|
||||||
id: query[0],
|
id: query[0],
|
||||||
activity_id: query[1],
|
activity_id: query[1], // TODO 芋艿:接入分享后,应该统一成 id 参数
|
||||||
};
|
};
|
||||||
break;
|
break;
|
||||||
case '4':
|
case '4':
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue