cate3List.js 1.7 KB
import {
  request
} from '../../request/index.js'
const a = getApp()
Page({
  data: {
    imagesUrl: a.globalData.baseUrl,
    id: '',
    cateItem: [],
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    //  console.log(options);
    this.setData({
      id: options.id,
    })

  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    this.getCateItem()
  },
  getCateItem() { // 获取数据
    let that = this;
    request({
        url: 'api/shop/cateGood',
        data: {
          id: that.data.id,
        }
      })
      .then(res => {
        that.setData({
          cateItem: res.data.data
        })
        // //  console.log("产品", that.data.cateItem);

      })
  },
  storeDetail(e) { // 去详情
    let id = e.currentTarget.dataset.id
    let num = e.currentTarget.dataset.num
    if (num == 1) {
      wx.navigateTo({
        url: '/pages/productdetailsImg/productdetailsImg?id=' + id
      })
    } else {
      wx.navigateTo({
        url: '/pages/productdetails/productdetails?id=' + id
      })
    }

  },
  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function () {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {

  }
})