소스 검색

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

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