You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
1.6 KiB
106 lines
1.6 KiB
5 years ago
|
// subpages/heart/pages/leaderboardNew/leaderboardNew.js
|
||
|
Page({
|
||
|
|
||
|
/**
|
||
|
* 页面的初始数据
|
||
|
*/
|
||
|
data: {
|
||
|
selectTab: 'tab1',
|
||
|
typeList: [{ //排名方式:0-周,1-月
|
||
|
type: '0',
|
||
|
name: '审核中',
|
||
|
select: true
|
||
|
},
|
||
|
{
|
||
|
type: '1',
|
||
|
name: '已通过',
|
||
|
select: false
|
||
|
},
|
||
|
{
|
||
|
type: '2',
|
||
|
name: '未通过',
|
||
|
select: false
|
||
|
},{
|
||
|
type: '3',
|
||
|
name: '已结束',
|
||
|
select: false
|
||
|
}
|
||
|
],
|
||
|
},
|
||
|
// tab 切换
|
||
|
onTabChange(e) {
|
||
|
this.setData({
|
||
|
selectTab: e.currentTarget.dataset.tab,
|
||
|
})
|
||
|
},
|
||
|
// 参与记录切换
|
||
|
onButtonChange: function (e) {
|
||
|
const list = this.data.typeList
|
||
|
let that = this;
|
||
|
list.forEach(item => {
|
||
|
if (item.type === e.currentTarget.dataset.type) {
|
||
|
item.select = true
|
||
|
} else {
|
||
|
item.select = false
|
||
|
}
|
||
|
})
|
||
|
that.setData({
|
||
|
typeList: list,
|
||
|
})
|
||
|
},
|
||
|
/**
|
||
|
* 生命周期函数--监听页面加载
|
||
|
*/
|
||
|
onLoad: function (options) {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面初次渲染完成
|
||
|
*/
|
||
|
onReady: function () {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面显示
|
||
|
*/
|
||
|
onShow: function () {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面隐藏
|
||
|
*/
|
||
|
onHide: function () {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面卸载
|
||
|
*/
|
||
|
onUnload: function () {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||
|
*/
|
||
|
onPullDownRefresh: function () {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 页面上拉触底事件的处理函数
|
||
|
*/
|
||
|
onReachBottom: function () {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 用户点击右上角分享
|
||
|
*/
|
||
|
onShareAppMessage: function () {
|
||
|
|
||
|
}
|
||
|
})
|