diff --git a/pages/mine/distribution/list.vue b/pages/mine/distribution/list.vue index 989daf3..54ce64e 100644 --- a/pages/mine/distribution/list.vue +++ b/pages/mine/distribution/list.vue @@ -66,42 +66,45 @@ - + + -
- - - - - - - {{ item.goodsName }} +
+ + - - - 佣金: - ¥{{ item.commission | unitPrice }} - - - - - - - ¥{{ item.price | unitPrice }} + + + + {{ item.goodsName }} + + + + 佣金: + ¥{{ item.commission | unitPrice }} + + + + + + + ¥{{ item.price | unitPrice }} + + + + 立即选取 + 分销商品 - - 立即选取 - 分销商品 - - -
- +
+
+
+ @@ -295,15 +298,30 @@ export default { }); this.goodsList.push(...res.data.result.records); } - if (this.goodsList.length == 0) { + if (this.goodsList.length === 0) { this.empty = true; } }); }, + + /** + * 底部加载数据 + */ + renderDate() { + + this.params.pageNumber += 1; + this.init(); + }, + }, };