// pages/index/index.js
Page({

  /**
   * 页面的初始数据
   */
  data: {
    imgUrls: [{
        url: '/img/aicon_07@2x.png'
      },
      {
        url: '/img/aicon_07@2x.png'
      },
      {
        url: '/img/aicon_07@2x.png'
      },
    ],
    indicatorDots: true,
    autoplay: false,
    interval: 1000,
    duration: 1000,
    currentSwiper: 0,
    indicatorColor: "rgba(255,255,255,0.5)", //指示点颜色
    indicatorActiveColor: "rgba(255,255,255,1)", //当前选中的指示点颜色

    navbar: [{
        name: '地区'
      },
      {
        name: '岗位'
      },
      {
        name: '推荐排序'
      },
      {
        name: '筛选'
      }
    ],
    currentTab: 0,
    // 地区选择
    areabar: [{
        area: '不限'
      },
      {
        area: '河西'
      },
      {
        area: '河东'
      },
      {
        area: '和平'
      },
      {
        area: '河东万达广场'
      }
    ],
    areaTab: 0,
    //岗位选择(大类别)
    jobbar: [{
        job: '不限'
      },
      {
        job: '热门'
      },
      {
        job: '餐饮'
      },
      {
        job: '旅行/酒店'
      },
      {
        job: '休闲'
      }


    ],
    jobTab: 0,
    //岗位选择(小类别)
    probar: [{
        pro: '不限'
      },
      {
        pro: '热门'
      },
      {
        pro: '餐饮'
      },
      {
        pro: '旅行/酒店'
      },
      {
        pro: '休闲'
      }


    ],
    proTab: 0,
    // 推荐排序
    sortbar: [{
        sort: '推荐排序'
      },
      {
        sort: '离我最近'
      },
      {
        sort: '工资最高'
      },
      {
        sort: '最新发布'
      },


    ],
    sortTab: 0,
    // 筛选(学历)
    screenbar: [{
        screen: '不限'
      },
      {
        screen: '小学及以下'
      },
      {
        screen: '初中'
      },
      {
        screen: '高中'
      },
      {
        screen: '中专/技校'
      },
      {
        screen: '大专'
      },
      {
        screen: '本科'
      },
      {
        screen: '硕士'
      },
      {
        screen: '博士'
      },


    ],
    screenTab: 0,
    // 筛选(酬薪范围)
    scopebar: [{
        scope: '不限'
      },
      {
        scope: '3000以下'
      },
      {
        scope: '3000~5000'
      },
      {
        scope: '5000~8000'
      },
      {
        scope: '8000以上'
      },

    ],
    scopeTab: 0,



    // 设置隐藏显示功能
    mask: false,

    //点击触发功能
    select: [

    ]
  },

  // 点击展示mask
  mask_show() {
    this.setData({
      mask: true
    })
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {

  },
  navbarTap: function(e) {
    console.log(88)
    let that = this;
    this.setData({
      currentTab: e.currentTarget.dataset.idx,
    })
  },
  // 地区选择
  area_Tap: function(e) {
    console.log(88)
    let that = this;
    this.setData({
      areaTab: e.currentTarget.dataset.idarea,
    })
  },
  // 岗位选择
  job_Tap: function(e) {
    console.log(88)
    let that = this;
    this.setData({
      jobTab: e.currentTarget.dataset.idjob,
    })
  },
  // 岗位选择(小类别)
  pro_Tap: function (e) {
    console.log(88)
    let that = this;
    this.setData({
      proTab: e.currentTarget.dataset.idpro,
    })
  },
  // 推荐排序
  sort_Tap: function(e) {
    console.log(88)
    let that = this;
    this.setData({
      sortTab: e.currentTarget.dataset.idsort,
    })
  },
  // 筛选(学历要求)
  screen_Tap: function(e) {
    console.log(88)
    let that = this;
    this.setData({
      screenTab: e.currentTarget.dataset.idscreen,
    })
  },
  // 筛选(酬薪范围)
  scope_Tap: function(e) {
    console.log(88)
    let that = this;
    this.setData({
      scopeTab: e.currentTarget.dataset.idscope,
    })
  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})