Sfoglia il codice sorgente

💄 style(goods-list): 注释掉分类筛选区域代码

- 暂时隐藏分类筛选功能,保留代码结构以便后续恢复
- 通过注释方式而非删除代码,避免功能丢失
yourname 1 mese fa
parent
commit
8362f77340
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      mini/src/pages/goods-list/index.tsx

+ 2 - 2
mini/src/pages/goods-list/index.tsx

@@ -129,7 +129,7 @@ export default function GoodsListPage() {
           </View>
 
           {/* 分类筛选 */}
-          <View className="flex space-x-2 mb-4 overflow-x-auto">
+          {/* <View className="flex space-x-2 mb-4 overflow-x-auto">
             {categories.map((category) => (
               <View
                 key={category.id}
@@ -146,7 +146,7 @@ export default function GoodsListPage() {
                 {category.name}
               </View>
             ))}
-          </View>
+          </View> */}
 
           {/* 商品列表 */}
           {isLoading ? (