@@ -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