backpeoplelist.js 3.7 KB
// pages/backpeoplelist/backpeoplelist.js
const app=getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    page:1,
    peoplelist:[],
    xiangindex: 0,
    xiangname: '请选择乡镇',
    xiangid: '',
    quname: '请选择社区',
    quid: '',
    quindex: 0,
    xiangarray:[],
    quarray:[],
  },

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

  },
  selectqu(){
    if(this.data.xiangid==''){
      wx.showToast({
        title: '请先选择乡镇',
        icon:'none'
      })
    }
  },
  // 获取乡镇
  // getxiang() {
  //   let that = this;
  //   var url = '/api/index/town';
  //   var params = {
  //     type: 1,
  //     pid: ''

  //   }
  //   app.post(url, params).then((res) => {
  //     console.log(res);
  //     that.setData({
  //       xiangarray: res.town,
  //       xiangname: res.town[0].name,
  //       xiangid: res.town[0].id
  //     })
  //     console.log(this.data.xiangarray)
  //     that.getqu()


  //   }).catch((err) => {

  //   })
  // },
  // bindxiangChange: function (e) {

  //   this.setData({
  //     xiangname: this.data.xiangarray[e.detail.value].name,

  //     xiangid: this.data.xiangarray[e.detail.value].id,
  //     xiangindex: e.detail.value

  //   })

  //   this.getqu()


  // },

  // getqu() {
  //   let that = this;
  //   var url = '/api/index/town';
  //   var params = {
  //     type: 2,
  //     pid: that.data.xiangid

  //   }
  //   app.post(url, params).then((res) => {
  //     console.log(res);
  //     that.setData({
  //       quarray: res.town,
  //       quid:res.town[0].id,
  //       quname:res.town[0].name
       
  //     })
  //   console.log(this.data.quid)


      
  //   }).catch((err) => {

  //   })
  // },
  // bindquChange: function (e) {

  //   this.setData({
  //     quname: this.data.quarray[e.detail.value].name,

  //     quid: this.data.quarray[e.detail.value].id,
  //     quindex: e.detail.value

  //   })




  // },
  getpeoplelist(){
    let that = this;
    var url = '/api/user/back_people';
    var params = {
      town_pid:that.data.xiangid,
      town_id:that.data.quid,
      admin_token: wx.getStorageSync("usertoken"),
      page:this.data.page
    }
    app.post(url, params,"post").then((res) => {
      console.log(res);
      that.setData({
        peoplelist: that.data.peoplelist.concat(res.back)
      })



    }).catch((err) => {

    })
  },
  peopledetail(e){
    let id=e.currentTarget.dataset.id;
    wx.navigateTo({
      url: '/pages/backpeopledetail/backpeopledetail?id='+id,
    })
  },

  search(){
    this.getpeoplelist()
  },

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

  },

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

  },

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

  },

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

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function () {
    wx.showNavigationBarLoading() //在标题栏中显示加载
    this.setData({
      page: 1,
      peoplelist: []
    })

    this.getpeoplelist()
    //模拟加载

    setTimeout(function () {

      // complete

      wx.hideNavigationBarLoading() //完成停止加载

      wx.stopPullDownRefresh() //停止下拉刷新

    }, 1000);
  },

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

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

  }
})