|
@@ -44,13 +44,10 @@ const gotoGoods = (item) => {
|
|
|
if (isshoppingguide.value) {
|
|
|
return;
|
|
|
}
|
|
|
- console.log(item);
|
|
|
- store.commit('tag/setTagClickType', {
|
|
|
- type: 'goodlist',
|
|
|
- data: {
|
|
|
- products: [item],
|
|
|
- },
|
|
|
- });
|
|
|
+ const temp = tagclick.value
|
|
|
+ temp.type = 'goodlist'
|
|
|
+ temp.data.products = [item]
|
|
|
+ store.commit('tag/setTagClickType', temp);
|
|
|
// apis.burying_point({ type: 3, productId: item.id });
|
|
|
// browser.openLink(`/pages/item/item?productId=${item.id}`,
|
|
|
// `https://m.cdfmembers.com/shop/600667208/item?productId=${item.id}`,
|