yuminge-app/yun-min-program-plugin-master/packageE/team_sell/teamActive/teamActive.js

138 lines
2.4 KiB
JavaScript

// packageD/team_sell/teamActive/teamActive.js
var app = getApp();
Page({
/**
* 页面的初始数据
*/
data: {
pageindx:0
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
this.getData();
},
chooseTabData(e){
this.setData({
pageindx:e.detail.index
});
if(this.data.pageindx > 0){
let id = this.data.info.levels[e.detail.index-1].id;
this.getList(id);
}
},
gojilu(){
wx.navigateTo({
url: '/packageE/team_sell/activeRecord/activeRecord',
});
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
},
getData(){
var that = this;
let urlStr = app.getNetAddresss('plugin.team-sales.api.active.index');
app._postNetWork({
url: urlStr,
success: (resdata) => {
var res = resdata.data;
if (res.result == 1) {
console.log(res);
that.setData({
info:res.data
});
} else {
wx.showToast({
title: res.msg,
icon: 'none'
});
}
},
fail:(res) =>{
wx.showToast({
title: res.msg,
icon: 'none'
});
}
});
},
getList(ID){
var that = this;
let urlStr = app.getNetAddresss('plugin.team-sales.api.active.level');
app._postNetWork({
url: urlStr,
data:{
level_id:ID
},
success: (resdata) => {
var res = resdata.data;
if (res.result == 1) {
console.log(res);
that.setData({
list:res.data.member.data
});
} else {
wx.showToast({
title: res.msg,
icon: 'none'
});
}
},
fail:(res) =>{
wx.showToast({
title: res.msg,
icon: 'none'
});
}
});
},
});