+
{{ item.goodsName }}
@@ -100,6 +100,7 @@ export default {
},
goodsData: [], //商品循环内容
goodsResult:"", //es总返回内容
+ proportion:0,
};
},
props: ["res","enableBottomLoad"],
@@ -119,6 +120,10 @@ export default {
},
},
mounted() {
+ const winWidth = uni.getSystemInfoSync().windowWidth
+ const proportion = 750 / winWidth
+ this.proportion = proportion
+
uni.$on('onReachBottom',()=>{
if(this.enableBottomLoad && this.goodsResult.totalElements >= this.params.pageNumber * this.params.pageSize){
this.params.pageNumber++