fix: 已选择的分销商品,一直显示十个商品,下拉并没有增加

This commit is contained in:
misworga831
2024-09-23 22:34:06 +08:00
parent c0e5d75cc6
commit d166d5943c

View File

@@ -66,6 +66,7 @@
<!-- 商品列表 --> <!-- 商品列表 -->
<view class="goods-list"> <view class="goods-list">
<scroll-view class="body-view" scroll-y @scrolltolower="renderDate">
<u-swipe-action v-for="(item, index) in goodsList" :disabled="!params.checked" :show="item.___selected" @open="openAction(item)" :index="index" :options="options" bg-color="#fff" <u-swipe-action v-for="(item, index) in goodsList" :disabled="!params.checked" :show="item.___selected" @open="openAction(item)" :index="index" :options="options" bg-color="#fff"
ref="swiperAction" :key="item.id" @click="changeActionTab(item)"> ref="swiperAction" :key="item.id" @click="changeActionTab(item)">
@@ -102,6 +103,8 @@
</view> </view>
</div> </div>
</u-swipe-action> </u-swipe-action>
</scroll-view>
<view class="empty"> <view class="empty">
<!-- <u-empty v-if="empty" text="没有分销商品了" mode="list"></u-empty> --> <!-- <u-empty v-if="empty" text="没有分销商品了" mode="list"></u-empty> -->
@@ -295,15 +298,30 @@ export default {
}); });
this.goodsList.push(...res.data.result.records); this.goodsList.push(...res.data.result.records);
} }
if (this.goodsList.length == 0) { if (this.goodsList.length === 0) {
this.empty = true; this.empty = true;
} }
}); });
}, },
/**
* 底部加载数据
*/
renderDate() {
this.params.pageNumber += 1;
this.init();
},
}, },
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.body-view {
overflow-y: auto;
height: calc(100vh - 44px - 80rpx - 104rpx);
}
.canvas-hide { .canvas-hide {
/* 1 */ /* 1 */
position: fixed; position: fixed;