diff --git a/pages/goods/index.vue b/pages/goods/index.vue index bf0b0cb..dc3f73a 100644 --- a/pages/goods/index.vue +++ b/pages/goods/index.vue @@ -157,7 +157,7 @@ items: [{ skuId: e.id, count: e.goods_num, - categoryId: state.goodsInfo.categoryId + categoryId: state.goodsInfo.categoryId }] }), }); diff --git a/pages/goods/seckill.vue b/pages/goods/seckill.vue index 6ae46d6..30a6430 100644 --- a/pages/goods/seckill.vue +++ b/pages/goods/seckill.vue @@ -196,7 +196,7 @@ }); } - // 分享信息 TODO 芋艿:待接入 + // 分享信息 const shareInfo = computed(() => { if (isEmpty(unref(activity))) return {}; return sheep.$platform.share.getShareInfo( diff --git a/pages/index/category.vue b/pages/index/category.vue index b4ab3b0..4c88f38 100644 --- a/pages/index/category.vue +++ b/pages/index/category.vue @@ -133,16 +133,11 @@ onLoad(async (params) => { await getList(); - - // 首页点击分类的处理:查找满足条件的分类 - const foundCategory = state.categoryList.find(category => category.id == params.id); - // 如果找到则调用 onMenu 自动勾选相应分类,否则调用 onMenu(0) 勾选第一个分类 - onMenu(foundCategory ? state.categoryList.indexOf(foundCategory) : 0); - - // 如果是 first 风格,需要加载商品分页 - if (state.style === 'first_one' || state.style === 'first_two') { - onMenu(0); - } + + // 首页点击分类的处理:查找满足条件的分类 + const foundCategory = state.categoryList.find(category => category.id === params.id); + // 如果找到则调用 onMenu 自动勾选相应分类,否则调用 onMenu(0) 勾选第一个分类 + onMenu(foundCategory ? state.categoryList.indexOf(foundCategory) : 0); }); onReachBottom(() => {