123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- // pages/beerCircles/beerCircles.js
- const request = require("../../utils/request.js");
- const login = require("../../utils/login.js");
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- handleStatus: true,
- parmas:{
- productId: null,
- contListType: 2,
- lastContentId: null
- },
- contentList: [],
- contentId: null
- },
- toaddArticle() {
- login.ifLogin('../pushArticle/pushArticle?productId='+this.data.parmas.productId)
- },
- contentlikeFun(event) {
- let that = this;
- let contentId = event.currentTarget.dataset.cid;
- let index = event.currentTarget.dataset.idx;
- request.postData(
- 'app/op/like',
- {recordType: 'ContentLike', outBusiId: contentId},
- res => {
- // that.getContentList();
- that.data.contentList[index].like = true;
- that.data.contentList[index].likeCount++;
- that.setData({
- contentList: that.data.contentList
- })
- },
- res => {
- console.log(res)
- }
- )
- },
- contentCellikeFun(event) {
- let that = this;
- let contentId = event.currentTarget.dataset.cid;
- let index = event.currentTarget.dataset.idx;
- request.postData(
- 'app/op/like/cancel',
- {recordType: 'ContentLike', outBusiId: contentId},
- res => {
- // that.getContentList();
- that.data.contentList[index].like = false;
- that.data.contentList[index].likeCount--;
- that.setData({
- contentList: that.data.contentList
- })
- },
- res => {
- console.log(res)
- }
- )
- },
- getContentList() {
- let that = this;
- request.getData(
- 'app/cont/content/list',
- that.data.parmas,
- res => {
- let arr = res.data.data;
- arr.forEach((item, index, array) => {
- let scale = request.getUrlKey(item.imgUrlList[0], 'scale');
- item.scale = scale ? scale : 1;
- })
- that.setData({
- contentList: arr
- })
- },
- res => {
- console.log(res)
- }
- )
- },
- handleShow(event) {
- let contentId = event.currentTarget.dataset.cid ? event.currentTarget.dataset.cid : null;
- this.setData({
- handleStatus: !this.data.handleStatus,
- contentId: contentId
- })
- },
- toCirclesDetail(event) {
- let contentId = event.currentTarget.dataset.cid;
- login.ifLogin('../circlesDetail/circlesDetail?contentId=' + contentId)
- },
- toReport() {
- login.ifLogin('../report/report?targetType=Content&targetId=' + this.data.contentId)
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad(options) {
- this.data.parmas.productId = options.productId;
- this.setData({
- parmas: this.data.parmas,
- })
- wx.setNavigationBarTitle({
- title: options.name,
- })
- // this.getContentList()
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady() {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow() {
- this.setData({
- handleStatus: true
- })
- this.getContentList()
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide() {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload() {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh() {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom() {
- let that = this;
- that.data.parmas.lastContentId = Number(that.data.contentList[that.data.contentList.length-1].contentId);
- request.getData(
- 'app/cont/content/list',
- that.data.parmas,
- res => {
- if(res.data.data.length > 0) {
- let arr = res.data.data;
- arr.forEach((item, index, array) => {
- let scale = request.getUrlKey(item.imgUrlList[0], 'scale');
- item.scale = scale ? scale : 1;
- })
- that.setData({
- contentList: that.data.contentList.concat(arr)
- })
- }
- },
- res => {
- console.log(res)
- }
- )
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage() {
- }
- })
|