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

  /**
   * 页面的初始数据
   */
  data: {
    region: [{ id: 1, area_name: '图片' }, { id: 2, area_name:'视频'}],
    regionname: '视频',
    reginindex: 0,
    type_id: '',
    piclist: [],
    quan: "",
    page:1,
    typekind:'',
    areaname:''
  },

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

    // 获取地区列表
    // this.getreginlist();
    

    console.log(this.data.region);

    if (options.typeindex != undefined) {
      this.setData({
       
        quan:1,
        type_id:options.type_id,
        areaname:options.areaname
        
      })
    }


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

    this.setData({

      regionname: this.data.region[e.detail.value].area_name,
      typekind: 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_video';
    let param = {
      type_id: this.data.type_id,
      type:that.data.typekind,
      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/picdetail/picdetail?id=' + id,
    })
  },

  // 视频详情
  videodetail(e) {
    console.log(e)
    let id = e.currentTarget.dataset.id;
    wx.navigateTo({
      url: '/pages/videodetail/videodetail?id=' + id,
    })
  },


  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  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() {

  }
})