Commit af0ee5be authored by Xuguangxing's avatar Xuguangxing

fix: 接口增加延迟

parent 49e0ebe2
......@@ -409,7 +409,11 @@ export default {
if (res.groupBuyInfo?.joinGroup) {
// 如果当前用户参了团到拼团详情
const query = { ...this.$route.query };
return this.$router.replace({ name: 'groupBuySkuInfoSmallPic', query });
setTimeout(() => {
// 延时用于解决短时间内刷detail接口的问题
this.$router.replace({ name: 'groupBuySkuInfoSmallPic', query });
}, 500);
return;
}
firstGroupShare(
{
......
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