yuminge-app/yun-min-program-plugin-master/packageH/newDraw/winnersList/winnersList.js

133 lines
2.6 KiB
JavaScript

// packageH/newDraw/winnersList/winnersList.js
const app = getApp();
Page({
/**
* 页面的初始数据
*/
data: {
list: [],
//more
isLoadMore: true,
page: 1,
total_page: 0
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
this.getData();
},
getData() {
let that = this;
let urlStr = app.getNetAddresss('plugin.luck-draw.frontend.index.getPrize');
app._postNetWork({
url: urlStr,
data: {
activity_id: that.options.id
},
success: (resdata) => {
let res = resdata.data;
if (res.result == 1) {
that.setData({
list: res.data.data,
isLoadMore: true,
total_page: res.data.last_page,
});
} else {
wx.showToast({
title: res.msg,
duration: 1000,
icon: 'none'
});
}
},
fail: function (res) {
console.log(res.msg);
}
});
},
_getMoreData(){
this.data.isLoadMore = false; // 防止多次请求分页数据
if (this.data.page >= this.data.total_page) {
// that.loading = true;
return;
} else {
this.data.page += 1;
let urlStr = app.getNetAddresss('plugin.luck-draw.frontend.index.getPrize');
app._postNetWork({
url: urlStr,
data:{
activity_id: this.options.id,
turn_num: this.options.num,
page: this.data.page
},
success: (resdata) => {
let res = resdata.data;
this.data.isLoadMore = true;
if (res.result === 1) {
var nextPageData = res.data.data;
let list = this.data.list.concat(nextPageData);
this.setData({list});
} else {
this.data.page = this.data.page - 1;
this.data.isLoadMore = false;
}
}
});
}
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
if (this.data.isLoadMore) {
this._getMoreData();
} else {
console.log('没有更多数据');
}
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
});