绿满眶商城微信小程序-uniapp
peng
2025-07-22 3e84a2c746727e91b25dca19e5c289fa594c2132
pages/commodity-square/commoditySquare.vue
@@ -17,7 +17,7 @@
         </view>
         <view class="goodsInfos" >
            <scroll-view :scroll-y="true" :show-scrollbar="false" style="height: 100%;">
            <scroll-view :scroll-y="true" :show-scrollbar="false" style="height: 100%;" @scrolltolower="loadMoreData()">
               <view class="goodsItem" v-for="item in goodsList" :key="item.id"
                  @click.prevent="goToGoodsInfo(item.id)"
@@ -246,6 +246,7 @@
         },
         //触底获取数据
         async loadMoreData() {
            console.log("触底加载------------》",this.maxPages)
            if (this.getGoodsParam.pageNumber < this.maxPages) {
               this.getGoodsParam.pageNumber++;
               await this.getgoodsData()
@@ -285,8 +286,9 @@
                  item.cardNum = cardItem.num;
               }
            })
            this.goodsList = goodsList.data.result.records;
            console.log('this.goodsList----------------------->',JSON.stringify(this.goodsList))
            this.goodsList = [...this.goodsList,...goodsList.data.result.records];
            this.maxPages = goodsList.data.result.pages
            console.log('this.goodsList----------------------->',JSON.stringify(goodsList.data.result))
         },
         async chooseCategory(id) {