// pages/kind/kind.js

const app = getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    zonelist: [],
    footersel:2
  },

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

  },

  gopic(e) {

    let token = wx.getStorageSync("token");
    if (token == '') {
      wx.showToast({
        title: '请先登录',
        icon: 'none'
      })

      setTimeout(function() {
        wx.navigateTo({
          url: '/pages/index/index',
        })
      }, 1500)
    } else {
      let typeindex = e.currentTarget.dataset.index;
      let id=e.currentTarget.dataset.id;
      let areaname=e.currentTarget.dataset.areaname;

      wx.navigateTo({
        url: '/pages/picbox/picbox?typeindex=' + typeindex+'&type_id='+id+'&areaname='+areaname,
      })
    }

  },

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

  },

  // 地区分类
  getzonekind(e) {


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




    }).catch((err) => {

    })



  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function() {
    this.getzonekind();
  },

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

  },

  // 底部导航跳转
  footersel(e) {
    let id = e.currentTarget.dataset.id;
    if (id == 1) {
      wx.navigateTo({
        url: '/pages/homepage/homepage',
      })
    } else if (id == 2) {
      wx.navigateTo({
        url: '/pages/kind/kind',
      })
    } else if (id == 3) {
      wx.navigateTo({
        url: '/pages/cart/cart',
      })
    } else if (id == 4) {
      wx.navigateTo({
        url: '/pages/mine/mine',
      })
    }
  },

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

  },

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

  },

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

  },

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

  }
})