ソースを参照

回滚:商品集合没有商品也显示

deng.yinping 10 ヶ月 前
コミット
69c6924171
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/stores/modules/goodscollection.ts

+ 1 - 1
src/stores/modules/goodscollection.ts

@@ -36,7 +36,7 @@ export const useGoodsCollectionStore = defineStore(() => {
             if (!state.loading) {
                 state.loading = true
                 const res = await getTCEGoodsCollections()
-                state.goodsCollections = res.data.filter((e) => e.collectionstatus === 1 && e.configs.length != 0)
+                state.goodsCollections = res.data.filter((e) => e.collectionstatus === 1)
             }
         } finally {
             state.loading = false