pichezi.js 3.0 KB
// pages/picbox/picbox.js
const app = getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    region: [],
    regionname: '全部',
    reginindex: 0,
    type_id: '',
    piclist: [],
    quan: "",
    page: 1,
    typekind: ''
  },

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

    // 获取地区列表
    //  this.getreginlist();
    //  获取图片分类
    this.getpickind();


    console.log(this.data.region);

    if (options.typeindex != undefined) {
      this.setData({

        quan: 1,
        type_id: options.type_id

      })
    }


    
  },
  bindRegionChange: function (e) {
    console.log(e)

    this.setData({

      regionname: this.data.region[e.detail.value].area_name,
      type_id: this.data.region[e.detail.value].id,
      page: 1,
      piclist: []


    })

    this.getpiclist()
  },

  //获取地区列表
  getreginlist() {
    let that = this;

    let url = 'user/type';
    app.post(url, '', 'post').then((res) => {
      console.log(res);
      this.setData({
        region: res,


      })

      // if(that.data.quan==1){
      //   that.setData({
      //     regionname: res[that.data.reginindex].area_name,
      //     type_id: res[that.data.reginindex].id
      //   })
      // }



      // 获取图片列表
      that.getpiclist();


    }).catch((err) => {

    })
  },

  // 获取图片/视频列表
  getpiclist() {
    let that = this;
    let url = '/user/pic';
    let param = {
      type_id: this.data.type_id,
     
      page: this.data.page,
      pageNum: 10

    }
    app.post(url, param, 'post').then((res) => {
      console.log(res);
      this.setData({
        piclist: that.data.piclist.concat(res),
        page: that.data.page,
        pageNum: 10
      })



    }).catch((err) => {

    })

  },

  

  // 图片详情
  picdetail(e) {
    console.log(e)
    let id = e.currentTarget.dataset.id
    wx.navigateTo({
      url: '/pages/tupianbox/tupianbox?id=' + id,
    })
  },

  // 获取图片分类
  getpickind(){
    let that = this;
    var url = 'user/pictype';
    
    app.post(url, '').then((res) => {
      console.log(res);
      that.setData({
        piclist: that.data.piclist.concat(res)
      })


    }).catch((err) => {

    })
  },

  


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

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {

  },

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

  },

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

  },

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

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {
    let newpage = this.data.page;
    newpage++;
    this.setData({
      page: newpage
    })
    this.getpiclist()
  },

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

  }
})