// packageC/micro_communities/microhomepage/microhomepage.js var app = getApp(); Page({ /** * 页面的初始数据 */ data: { homepageData: {}, micuid: '', catelist: [], mainCommentShow: false, maincomment: '', active: 0, catelist_1: [], catelist_2: [], catelist_3: [], //more isLoadMore: true, page: 1, total_page: 0, loading: false, getMoreType: 1, self: false, stick_type: 1, handleTag: false, }, /** * 生命周期函数--监听页面加载 */ onLoad: function(options) { if (options.mid) { app._setMid(option.mid); } if (options.micuid) { this.setData({ micuid: options.micuid, self: true }); } this.getHomepageData(); }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function() { }, /** * 生命周期函数--监听页面显示 */ onShow: function() { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function() { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function() { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function() { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function() { if (this.data.loading) { console.log('没有更多数据'); } else { this.getMoreData(); } }, /** * 朋友圈 */ onShareTimeline: function () { let value = wx.getStorageSync('yz_uid'); let mid = ''; if (value) { mid = value; } return { title: this.data.homepageData.nickname + '的微社区', query: 'micuid=' + this.data.micuid + '&mid=' + mid, }; }, /** * 用户点击右上角分享 */ onShareAppMessage: function() { var value = wx.getStorageSync('yz_uid'); var mid = ''; if (value) { mid = value; } return { title: this.data.homepageData.nickname + '的微社区', path: '/packageC/micro_communities/microhomepage/microhomepage?micuid=' + this.data.micuid + '&mid=' + mid }; }, gotoFanList(e) { let actived = e.currentTarget.dataset.actived; wx.navigateTo({ url: '/packageC/micro_communities/microFanlist/microFanlist?uid=' + this.data.micuid+ '&actived='+actived }); }, getHomepageData() { let that = this; let urlStr = app.getNetAddresss("plugin.micro-communities.api.user.index"); let dataJson = {}; if (this.data.micuid) { dataJson.uid = this.data.micuid; } app._postNetWork({ url: urlStr, showToastIn: false, data: dataJson, success: function(resdata) { var res = resdata.data; if (res.result == 1) { that.setData({ homepageData: res.data, micuid: res.data.uid, maincomment: (res.data.signature ? res.data.signature : '') }); if (that.data.homepageData.is_own == 1) { that.data.getMoreType = 1; that.getClassification(); } else { that.data.getMoreType = 3; that.getClassification(); } } else { wx.showToast({ icon: 'none', title: res.msg, duration: 1500 }); } }, fail: function(res) {} }); }, getClassification() { let that = this; let urlStr = app.getNetAddresss("plugin.micro-communities.api.index.getStick"); that.pageInit(); let dataJson = {}; let {stick_type} = this.data; if (this.data.getMoreType == 1) { dataJson.uid = that.data.micuid; if(stick_type==0||stick_type==1){ dataJson.stick_type = stick_type; } } else if (this.data.getMoreType == 2) { dataJson.is_praise = 1; } else if (this.data.getMoreType == 3) { dataJson.uid = that.data.micuid; } app._postNetWork({ url: urlStr, showToastIn: false, data: dataJson, success: function(resdata) { var res = resdata.data; if (res.result == 1) { that.data.total_page = res.data.last_page; if (that.data.getMoreType == 3) { that.setData({ catelist: res.data.data }); } else if (that.data.getMoreType == 1) { if(stick_type==0){ that.setData({ catelist_3: res.data.data }); return; } that.setData({ catelist_1: res.data.data }); } else if (that.data.getMoreType == 2) { that.setData({ catelist_2: res.data.data }); } console.log(that.data.catelist_3,3); console.log(that.data.catelist_2,2); console.log(that.data.catelist_1,1); } else { wx.showToast({ icon: 'none', title: res.msg, duration: 1500 }); } }, fail: function(res) {} }); }, attentionBtn() { if (this.data.homepageData.is_follow) { this.cancelAttention(); } else { this.addAttention(); } }, cancelAttention() { let that = this; let urlStr = app.getNetAddresss("plugin.micro-communities.api.user.delFollow"); let dataJson = { uid: this.data.micuid }; app._postNetWork({ url: urlStr, showToastIn: false, data: dataJson, success: function(resdata) { var res = resdata.data; if (res.result == 1) { that.setData({ 'homepageData.is_follow': false }); wx.showToast({ icon: 'none', title: res.msg, duration: 1500 }); } else { wx.showToast({ icon: 'none', title: res.msg, duration: 1500 }); } }, fail: function(res) {} }); }, addAttention() { let that = this; let urlStr = app.getNetAddresss("plugin.micro-communities.api.user.addFollow"); let dataJson = { user_id: this.data.micuid }; app._postNetWork({ url: urlStr, showToastIn: false, data: dataJson, success: function(resdata) { var res = resdata.data; if (res.result == 1) { that.setData({ 'homepageData.is_follow': true }); wx.showToast({ icon: 'none', title: res.msg, duration: 1500 }); } else { wx.showToast({ icon: 'none', title: res.msg, duration: 1500 }); } }, fail: function(res) {} }); }, jumpDetails(e) { let stick_id = e.currentTarget.dataset.stickid; wx.navigateTo({ url: '/packageC/micro_communities/microCommentDetails/microCommentDetails?stickId=' + stick_id }); }, pageInit() { this.data.page = 1; this.data.total_page = 0; this.data.isLoadMore = true; this.data.loading = false; }, getMoreData() { const that = this; let dataJson = {}; let {stick_type} = this.data; if (this.data.getMoreType == 1) { dataJson.uid = that.data.micuid; if(stick_type==0||stick_type==1){ dataJson.stick_type= stick_type; } } else if (this.data.getMoreType == 2) { dataJson.is_praise = 1; } else if (this.data.getMoreType == 3) { dataJson.uid = that.data.micuid; } that.data.isLoadMore = false; // 防止多次请求分页数据 let urlStr = app.getNetAddresss("plugin.micro-communities.api.index.getStick"); if (this.data.page >= this.data.total_page) { that.setData({ loading: true, }); return; } else { that.data.page = this.data.page + 1; dataJson.page = this.data.page; app._postNetWork({ url: urlStr, showToastIn: false, data: dataJson, success: function(resdata) { var res = resdata.data; if (res.result == 1) { var myData = res.data.data; that.setData({handleTag: false}) if (that.data.getMoreType == 3) { that.setData({ catelist: that.data.catelist.concat(myData) }); } else if (that.data.getMoreType == 1) { if(stick_type==0){ that.setData({ catelist_3: that.data.catelist_3.concat(myData) }); return; } that.setData({ catelist_1: that.data.catelist_1.concat(myData) }); } else if (that.data.getMoreType == 2) { that.setData({ catelist_2: that.data.catelist_2.concat(myData) }); } } else { that.data.page = that.data.page - 1; that.data.isLoadMore = false; return; } }, fail: function(res) {} }); } }, introductionInp() { this.setData({ mainCommentShow: true }); }, subMainBtn() { if (!this.data.maincomment) { wx.showToast({ icon: 'none', title: '请留下你的简介吧', duration: 1500 }); return false; } let that = this; let dataJson = {}; let urlStr = app.getNetAddresss("plugin.micro-communities.api.user.upSignature"); dataJson.contents = this.data.maincomment; app._postNetWork({ url: urlStr, showToastIn: false, data: dataJson, success: function(resdata) { var res = resdata.data; if (res.result == 1) { that.setData({ 'homepageData.signature': that.data.maincomment, mainCommentShow: false }); wx.showToast({ icon: 'none', title: res.msg, duration: 1500 }); } else { wx.showToast({ icon: 'none', title: res.msg, duration: 1500 }); } }, fail: function(res) {} }); }, maincommentinp(e) { let val = e.detail.value; this.setData({ maincomment: val }); }, showClose() { this.setData({ mainCommentShow: false }); }, getClassificationBtn(e) { let index = e.detail.index; this.setData({ active:index, handleTag: true }); if (index == 2) { this.data.getMoreType = 2; this.getClassification(); } else { this.data.getMoreType = 1; if(index==0){ this.setData({stick_type:1}); }else if(index==1){ this.setData({stick_type:0}); }else{ this.setData({stick_type:index}); } this.getClassification(); } }, });