فهرست منبع

首页筛选掉贝币商城分类

HHE-5476 1 ماه پیش
والد
کامیت
0b41f1dbfd
1فایلهای تغییر یافته به همراه8 افزوده شده و 4 حذف شده
  1. 8 4
      pages/index/index.vue

+ 8 - 4
pages/index/index.vue

@@ -563,10 +563,14 @@ const goDetail = async (item) => {
   // await goShopDetail(item, uid);
   uni.navigateTo({ url: `/pages/goods/goods_details/index?id=${item.id}` });
 };
-function getAllCategory () {
-  getCategoryList().then(res => {
-    classifyList.value = res.data.sort((a, b) => a.sort - b.sort);
-  })
+function getAllCategory() {
+  getCategoryList().then((res) => {
+    const list = [];
+    res.data.forEach((item) => {
+      if (item.name !== "贝币商城") return list.push(item);
+    });
+    classifyList.value = list.sort((a, b) => a.sort - b.sort);
+  });
 }
 const toBrowsingHistory = () => {
   uni.navigateTo({ url: `/pages/users/browsing_history/index?merchantId=${merchantId.value}` });