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.
142 lines
2.7 KiB
142 lines
2.7 KiB
2 years ago
|
// pages/distribution/commission.js
|
||
|
var app = getApp();
|
||
|
Page({
|
||
|
|
||
|
/**
|
||
|
* 页面的初始数据
|
||
|
*/
|
||
|
data: {
|
||
|
list_3: [],
|
||
|
total: 1,
|
||
|
isopen: true,
|
||
|
load: true,
|
||
|
money: '0'
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面加载
|
||
|
*/
|
||
|
onLoad: function(options) {
|
||
|
// 设置标题
|
||
|
wx.setNavigationBarColor({
|
||
|
frontColor: app.d.frontColor, //
|
||
|
backgroundColor: app.d.bf_color, //页面标题为路由参数
|
||
|
animation: {
|
||
|
duration: 400,
|
||
|
timingFunc: 'easeIn'
|
||
|
}
|
||
|
})
|
||
|
this.getMyClientData()
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面初次渲染完成
|
||
|
*/
|
||
|
onReady: function() {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面显示
|
||
|
*/
|
||
|
onShow: function() {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面隐藏
|
||
|
*/
|
||
|
onHide: function() {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 生命周期函数--监听页面卸载
|
||
|
*/
|
||
|
onUnload: function() {
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||
|
*/
|
||
|
onPullDownRefresh: function() {
|
||
|
this.setData({
|
||
|
list_3: [],
|
||
|
total: 1,
|
||
|
isopen: true,
|
||
|
load: true
|
||
|
})
|
||
|
this.getMyClientData()
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 页面上拉触底事件的处理函数
|
||
|
*/
|
||
|
onReachBottom: function() {
|
||
|
this.getMyClientData()
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 用户点击右上角分享
|
||
|
*/
|
||
|
onShareAppMessage: function() {
|
||
|
|
||
|
},
|
||
|
getMyClientData: function() {
|
||
|
var that = this
|
||
|
if (!that.data.isopen) {
|
||
|
return
|
||
|
}
|
||
|
if (that.data.load) {
|
||
|
that.data.load = false
|
||
|
wx.request({
|
||
|
url: app.d.ceshiUrl + '&action=distribution&m=money',
|
||
|
method: 'post',
|
||
|
data: {
|
||
|
openid: app.globalData.userInfo.openid,
|
||
|
page: that.data.total
|
||
|
},
|
||
|
header: {
|
||
|
'Content-Type': 'application/x-www-form-urlencoded'
|
||
|
},
|
||
|
success: function(res) {
|
||
|
var data = res.data
|
||
|
if (data.status) {
|
||
|
that.setData({
|
||
|
list_3: 1
|
||
|
})
|
||
|
} else {
|
||
|
var list_3 = that.data.list_3
|
||
|
if (data.res.length) {
|
||
|
|
||
|
list_3 = list_3.concat(data.res)
|
||
|
that.setData({
|
||
|
list_3: list_3,
|
||
|
money: data.money
|
||
|
})
|
||
|
}
|
||
|
that.data.load = true
|
||
|
if (that.data.total === data.total) {
|
||
|
that.data.isopen = false
|
||
|
} else {
|
||
|
that.data.total++
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
error: function(e) {
|
||
|
wx.showToast({
|
||
|
title: '网络异常!',
|
||
|
duration: 2000
|
||
|
});
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
},
|
||
|
navto: function(event) {
|
||
|
wx.navigateTo({
|
||
|
url: './brokeragedatails?id=' + event.target.dataset.id
|
||
|
})
|
||
|
}
|
||
|
})
|