matrix.js 3.4 KB
// pages/matrix/matrix.js
const app = getApp();
Page({

  /**
   * 页面的初始数据
   */
  data: {
    current:0,
    showType:!1,
    areaList: [{
      "id": '',
      "name": "全部"
    }],
    ifData: false,
    index: 0,
    companyList:[],
    page:1,
    ifData:!1,
    navScrollLeft:0
  },
  changeShow(){
    this.setData({
      showType: !this.data.showType
    })
  },
  changeAreas(e){
    this.setData({
      index:e.detail.value,
      park:this.data.areaList[e.detail.value].id,
      page:1,
      companyList:[],
    })
    this.getCompanyList(this.data.category_id,this.data.areaList[e.detail.value].id)
  },
  // 获取分类
  getTypes(){
    let url = '/api/Company/getCompanyCategory';
    app.post(url,{}).then((res)=>{
      this.setData({
        typeList: res
      })
    })
  },
  // 获取园区
  getAreas(){
    let url = '/api/Company/getCompanyPark';
    app.post(url,{}).then((res)=>{
      this.setData({
        areaList: this.data.areaList.concat(res)
      })
    })
  },
  // 获取矩阵列表
  getCompanyList(category_id,park){
    let url = '/api/Company/index', b = this;
    let params = {
      category_id: category_id||'',
      park:park||'',
      page: b.data.page
    }
    app.post(url,params).then((res)=>{
      b.setData({
        companyList: b.data.companyList.concat(res.data),
        totalPage: res.total,
        currpage: res.current_page, 
      }), b.data.companyList.length > 0 ? b.setData({
          ifData: !0
        }) : b.setData({
          ifData: !1
        }), res.data.length < res.per_page ? b.setData({
        noMore: !0,
        }) : ''
    })
  },
  // 更新token
  changeToken(){
    let url = '/api/user/codeToToken',t = this;
    wx.login({
      success:function(res){
        console.log(res)
        app.post(url,{code:res.code}).then((r)=>{
          wx.setStorageSync('token', r.userInfo.token)
        })
      }
    }) 
  },
  getMore(){
    let t = this;
    !t.data.noMore?(t.setData({
      page:t.data.page++
    }), t.getCompanyList(t.data.category_id,t.data.park)):""
  },
  tabCharge(e) {
    let s = this, singleWidth = s.data.windowWidth / 5, cur = e.currentTarget.dataset.index+1;
    s.setData({
      companyList:[],
      page:1,
      current: e.currentTarget.dataset.current,
      category_id: e.currentTarget.dataset.current,
      navScrollLeft:(cur-2)*singleWidth
    })
    s.getCompanyList(e.currentTarget.dataset.current, s.data.park)
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {
    let a = this;
    a.getTypes(), a.getAreas(), a.getCompanyList(), wx.getSystemInfo({
      success: function (t) {
        a.setData({
          scrollHeight: t.windowHeight,
          windowWidth: t.windowWidth
        });
      }
    })
  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})