liukangdong
2024-08-05 00bf17838b496e6fcfed2e521f9c27f8f0e3e3c7
wechat_jiaxuan/pages/consult/consult.js
@@ -1,4 +1,5 @@
import { getZhongTaiProductNewsPage, getCatalogList, getCataLogTagList } from '../../api/index'
import { getZhongTaiProductNewsPage, getCatalogList,actionDo } from '../../api/index'
let touchDot = 0
Page({
  /**
@@ -7,17 +8,39 @@
  data: {
    category: [],
    secondCategory: [],
    showCate: true,
    animationData: {},
    catalogCode: '',
    tagCode: '',
    search: '',
    query: '',
    dataList: [],
    total: 0,
    pageNum: 1,
    pageSize: 10,
    // height: 0,
    // top: 0,
  },
  onLoad(options) {
    this.getCate()
    this.animation = wx.createAnimation({
      duration: 500,
      timingFunction: 'ease',
    });
  },
  onReachBottom() {
    console.log('触底事件');
    const { total, dataList, pageNum } = this.data
    if(total > dataList.length){
      this.setData({ pageNum: pageNum + 1 })
      this.getList()
    }else{
      wx.showToast({
        title: '暂无更多数据',
        icon: 'none'
      })
    }
  },
  getCate() {
    getCatalogList({catalogCode: 'product_info'}).then(res => {
@@ -41,12 +64,20 @@
  },
  itemClick(e) {
    const item = e.currentTarget.dataset.item
    const { dataList } = this.data
    dataList.forEach(ite => {
      if(item.id === ite.id){
        ite.viewCount += 1
      }
    })
    this.setData({ dataList })
    actionDo({actionType: 'view',id: item.id})
    if(item.contentType == 'link'){
      wx.navigateTo({
        url: '/pages/webView/index?link=' + item.content,
        url: '/pages/webView/index',
        success: function(res) {
          // 通过eventChannel向被打开页面传送数据
          res.eventChannel.emit('acceptDataFromOpenerPage', { link: item.openContent, title: item.title })
          res.eventChannel.emit('acceptDataFromOpenerPage', { link: item.content, title: item.title })
        }
      })
    }else{
@@ -55,13 +86,20 @@
      })
    }    
  },
  searchList() {
    this.setData({ dataList: [], total: 0, pageNum: 1 })
    this.getList()
  },
  getList() {
    const { pageNum, pageSize, catalogCode, tagCode, search } = this.data
    const { pageNum, pageSize, catalogCode, tagCode, query } = this.data
    getZhongTaiProductNewsPage({
      pageNum, pageSize, search, catalogCode: tagCode || catalogCode
      pageNum, pageSize, query, catalogCode: tagCode || catalogCode
    }).then(res => {
      if(res.data){
        this.setData({ dataList: res.data.records,total: res.data.records.total })
        this.setData({
          dataList: [ ...this.data.dataList, ...res.data.records ],
          total: res.data.total
        })
      }
      
    })
@@ -71,8 +109,7 @@
    this.setData({ catalogCode: code,secondCategory: [], tagCode: ''  })
    this.gettag()
    this.getList()
    console.log('e', e.currentTarget.dataset);
    console.log('catalogCode', this.data.catalogCode);
    this.setData({ dataList: [], pageNum: 1 })
  },
  seCateClick(e) {
    const { code } = e.currentTarget.dataset
@@ -81,6 +118,7 @@
    }else{
      this.setData({ tagCode: code })
    }
    this.setData({ dataList: [], pageNum: 1 })
    this.getList()
  },
  priviewFull(e){
@@ -91,7 +129,38 @@
  onReady() {
  },
  bindscrolltoupper() {
    this.setData({ showCate: true })
    this.fadeIn();
  },
  touchstart(e){
    touchDot = e.detail.scrollTop;
  },
  touchmove(e) {
    var touchMove = e.detail.scrollTop;
    if(touchMove - touchDot > 60){
      this.fadeOut();
    }
    if(touchDot - touchMove > 60){
      this.fadeIn();
      this.setData({ showCate: true })
    }
  },
  fadeIn: function () {
    this.animation.opacity(1).step();
    this.setData({
      animationData: this.animation.export()
    });
  },
  fadeOut: function () {
    this.animation.opacity(0).step();
    this.setData({
      animationData: this.animation.export()
    });
    setTimeout(() => {
      this.setData({ showCate: false });
    }, 500); // 动画持续时间
  },
  /**
   * 生命周期函数--监听页面显示
   */
@@ -112,25 +181,16 @@
  onUnload() {
  },
  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh() {
  },
  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom() {
  },
  /**
   * 用户点击右上角分享
   */
  onShareAppMessage() {
    let { info } = this.data
    console.log('点击了分享')
    if(info.users && info.users.userId){
      return {
        path: '/pages/detailDis/product?id=' + info.id + '&userId=' + info.users.id
      }
    }
  }
})