// pages/mine/mine.js
const app = getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    myinfo: '',
    type:'',
    cancelorder:false,
    kai: 1,
    footersel:4,
    typek:'1'
     
  },

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

  },
  yuyue(){
    wx.navigateTo({
      url: '/pages/qujingdi/qujingdi',
    })
  },

  // 数值切换
    changenum(){
        let that = this;
        let url = 'user/change';
        app.post(url, '', 'post').then((res) => {
          console.log(res);
    //       that.setData({
    //           typek:res.type
    //       })
        }).catch((err) => {
    
        })
    
      },

  // 底部导航跳转
  footersel(e) {
    let id = e.currentTarget.dataset.id;
    if (id == 1) {
      wx.redirectTo({
        
        url: '/pages/homepage/homepage',
      })
    } else if (id == 2) {
      wx.redirectTo({
        url: '/pages/kind/kind',
      })
    } else if (id == 3) {
      wx.redirectTo({
        url: '/pages/cart/cart',
      })
    } else if (id == 4) {
      wx.redirectTo({
        url: '/pages/mine/mine',
      })
    }
  },
  // 申请开发票
  applayfapiao(){
    this.setData({
      cancelorder:true
    })
  },

  // 选择发票类型
  xuanfapiao(e) {
    console.log(999);
    console.log(e)
    let kai = e.currentTarget.dataset.kai
    this.setData({
      kai: kai
    })


  },
  hidecancel() {
    this.setData({
      cancelorder: false
    })
  },

  suredel() {
    let that = this;
    wx.navigateTo({
      url: '/pages/kaifapiao/kaifapiao',
    })
    // if (that.data.ids.length == 0) {
    //   wx.showToast({
    //     title: '请选择要删除的订单',
    //     icon: 'none'
    //   })
    // } else {

    //   let url = 'user/delorder';
    //   let param = {
    //     ids: that.data.ids.join(",")
    //   }
    //   app.post(url, param, 'post').then((res) => {
    //     console.log(res);
    //     wx.showToast({
    //       title: '删除订单成功',
    //       icon: 'none'
    //     })

    //     setTimeout(function() {
    //       that.setData({
    //         orderlist: [],
    //         page: 1,
    //         cancelorder: false,
    //         ids: []
    //       })
    //       that.getmyorder()
    //     }, 1500)
    //   }).catch((err) => {

    //   })
    // }



  },

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

    })

  },

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

      setTimeout(function() {
        wx.navigateTo({
          url: '/pages/index/index',
        })
      }, 1500)
    } else {
      wx.navigateTo({
        url: '/pages/vipdetail/vipdetail?hui='+1,
      })
    }

  },

  joinhui(){
    let that = this;
    let url = 'user/duan_send';

    app.post(url, '', 'post').then((res) => {
      console.log(res);
    }).catch((err) => {

    })
  },

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

      setTimeout(function() {
        wx.navigateTo({
          url: '/pages/index/index',
        })
      }, 1500)
    } else {
      wx.navigateTo({
        url: '/pages/chongzhi/chongzhi?hui='+2,
      })
    }

  },

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

      setTimeout(function() {
        wx.navigateTo({
          url: '/pages/index/index',
        })
      }, 1500)
    } else {
      wx.navigateTo({
        url: '/pages/xiaofeijilu/xiaofeijilu',
      })
    }

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

      setTimeout(function() {
        wx.navigateTo({
          url: '/pages/index/index',
        })
      }, 1500)
    } else {
      wx.navigateTo({
        url: '/pages/orderbox/orderbox',
      })
    }

  },

  tousu(){
    wx.navigateTo({
      url: '/pages/tousujianyi/tousujianyi',
    })
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function() {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function() {
    let that=this;
    this.getmyinfo();
    // this.changenum()

    wx.getSystemInfo({
      success (res) {
        console.log(res)
       if(res.platform=='ios'){
         that.setData({
           typek:0
         })
        
       }else if(res.platform=="android"){
       
       }else if(res.platform=='devtools'){
        that.setData({
          typek:0
        })
       
       }
       
        
      }
    })
  },

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

  },

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

  },

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

  },

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

  },

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

  }
})