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

113 lines
1.9 KiB
JavaScript

// packageD/team_sell/teamSell/teamSell.js
var app = getApp();
Page({
/**
* 页面的初始数据
*/
data: {
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
this.getData();
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
toPredict() {
wx.navigateTo({
url: '/packageE/team_sell/predictIncome/predictIncome'
});
},
golimit(){
wx.navigateTo({
url: '/packageE/team_sell/teamLimit/teamLimit',
});
},
gohuoyue(){
wx.navigateTo({
url: '/packageE/team_sell/teamActive/teamActive',
});
},
goList(e){
let lis = e.currentTarget.dataset.lis;
console.log(lis);
wx.navigateTo({
url: '/packageE/team_sell/getCouponLis/getCouponLis?lis='+lis,
});
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
},
getData(){
var that = this;
let urlStr = app.getNetAddresss('plugin.team-sales.api.home.index');
app._postNetWork({
url: urlStr,
success: (resdata) => {
var res = resdata.data;
if (res.result == 1) {
console.log(res);
that.setData({
info:res.data
});
wx.setNavigationBarTitle({
title: res.data.set.name,
});
} else {
wx.showToast({
title: res.msg,
icon: 'none'
});
console.log(res.msg);
}
}
});
}
});