|
|
|
@ -14,6 +14,7 @@ Page({ |
|
|
|
height: app.globalData.fragmentHeight - 180, |
|
|
|
CustomBar: app.globalData.CustomBar, |
|
|
|
scroll: true, |
|
|
|
top: 0, |
|
|
|
pageIndex: 0, |
|
|
|
pageList: [], |
|
|
|
tabs: [], |
|
|
|
@ -107,7 +108,11 @@ Page({ |
|
|
|
fetchCheapList: function () { |
|
|
|
request.get('/bxe-mall/product/cheapList', this.data.form).then(result => { |
|
|
|
//成功回调
|
|
|
|
this.setData({ loading: false, cheapList: result.data }) |
|
|
|
if(this.data.form.pageNum == 1){ |
|
|
|
this.setData({ loading: false, top: 0, cheapList: result.data }) |
|
|
|
} else { |
|
|
|
this.setData({ loading: false, cheapList: result.data }) |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
// 获取团购列表
|
|
|
|
|