const a = getApp()
Page({
  /**
   * 页面的初始数据
   */
  data: {
    no_login: true,
    obj: {},
    background: ['1', '2', '3'],
    indicatorDots: false,
    vertical: false,
    autoplay: true,
    interval: 3000,
    duration: 1500,
    kuaidi:'',
    selected:3,
    resultone:[],
    list:[{
              pagePath: "/pages/index/index",
              text: "商品",
              iconPath: "/images/tabbar/icon_75.png",
              selectedIconPath: "/images/tabbar/icon_68.png"
            },
            {
              pagePath: "/pages/message/message",
              text: "消息",
              iconPath: "/images/tabbar/message.png",
              selectedIconPath: "/images/tabbar/messageactive.png"
            },
            {
              pagePath: "/pages/shop_cart/shop_cart",
              text: "购物车",
              iconPath: "/images/tabbar/icon_70.png",
              selectedIconPath: "/images/tabbar/icon_73.png"
            },
            {
              pagePath"/pages/my/my",
              text"我的",
              iconPath"/images/tabbar/icon_71.png",
              selectedIconPath"/images/tabbar/icon_72.png"
            }]
  },

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

  },

  //获取最新物流
  getnewwuliu(){
    let that = this
    let url = '/order/order_status3';
    let data = {  
    }
    a.postk(url, data, "POST").then((r) => {
      console.log(r)
      that.setData({
        kuaidi: r.data
      })
      let  resultone=[]
      that.data.kuaidi.forEach(function(value,index,array){
        value.result1.forEach(function(valuek,indexk,arrayk){
          resultone.push(valuek)
        })
      })
      that.setData({
        resultone:resultone
      })
      console.log(resultone)
    }).catch((err) => { 
      if(err.msg=='用户未登录'){
        setTimeout(function(){
          wx.navigateTo({
            url: '/pages/register/register',
          })
        },1500)
      }
    })
  },

  //查看物流
  look_logistics(e) {
    console.log(e)
    let ordernum = e.currentTarget.dataset.ordernum;
    let id=e.currentTarget.dataset.id;
   
    wx.navigateTo({
      url: '/pages/logistics/logistics?order=' + id
    })
  },

  // 获取个人信息
  getInfoFun() {
    let t = this;
    console.log(4848394893)
    let u ='/user/member';
    a.postk(u, {}).then((r) => {
      console.log('用户信息',r)
      if (r.code == 1) {
        t.setData({
          obj: r.data
        })
      }
    }).catch((err) => {
      if (err.msg =='请重新登录|授权'){
        t.setData({
          obj: {}
        })
      }
      console.log(err)
    })
  },

  // 跳转授权页面
  toLoginFun() {
    if (this.data.no_login) {
      wx.navigateTo({
        url: '/pages/register/register',
      })
    }
  },

  // 跳转页面(订单,收藏,积分,地址,关于)
  jumpListFun(e) {
    let t = this;
    let type = e.currentTarget.dataset.i;
    let index = e.currentTarget.dataset.t;
    let statusk=e.currentTarget.dataset.statusk;
    let token=wx.getStorageSync('token');
    if(token==''){
      wx.showToast({
        title: '请先登录',
        icon:"none"
      })
      setTimeout(function(){
        wx.navigateTo({
          url: '/pages/register/register',
        })
      },1500)

      return false
    }
    if (index == 1) {
      // 跳转订单列表
      wx.navigateTo({
        url: '/pages/order/order_list/order_list?type=' + type+'&statusk='+statusk,
      })
    } else if (index == 2) {
      // 跳转收藏列表
      wx.navigateTo({
        url: '/pages/Collection/collection',
      })
    } else if (index == 3) {
      // 跳转积分列表
      wx.navigateTo({
        url: '/pages/my/my_integral/my_integral',
      })
    } else if (index == 4) {
      // 跳转地址列表
      wx.navigateTo({
        url: '/pages/address/address',
      })
    } else if (index == 6) {
      // 跳转地址列表
      wx.navigateTo({
        url: '/pages/zuji/zuji',
      })
    }else if(index==5){
         wx.navigateTo({
        url: '/pages/my/about_us/about_us',
      })
    }
    // if (wx.getStorageSync("token") && wx.getStorageSync("login") == 1 && index != 5) {
      
    //   if (index == 1) {
    //     // 跳转订单列表
    //     wx.navigateTo({
    //       url: '/pages/order/order_list/order_list?type=' + type,
    //     })
    //   } else if (index == 2) {
    //     // 跳转收藏列表
    //     wx.navigateTo({
    //       url: '/pages/Collection/collection',
    //     })
    //   } else if (index == 3) {
    //     // 跳转积分列表
    //     wx.navigateTo({
    //       url: '/pages/my/my_integral/my_integral',
    //     })
    //   } else if (index == 4) {
    //     // 跳转地址列表
    //     wx.navigateTo({
    //       url: '/pages/address/address',
    //     })
    //   } else if (index == 6) {
    //     // 跳转地址列表
    //     wx.navigateTo({
    //       url: '/pages/zuji/zuji',
    //     })
    //   }
    // } else if (wx.getStorageSync("token") && index == 5) {
    //   // 跳转关于列表
    //   wx.navigateTo({
    //     url: '/pages/my/about_us/about_us',
    //   })
    // } else {
     
    

    //   // let login_new=wx.getStorageSync('login');
    //   // if(login_new==0){
    //   //   wx.showModal({
    //   //     title: '提示',
    //   //     content: '您还不是会员',
    //   //     success(res) {
    //   //       if (res.confirm) {
    //   //         wx.navigateTo({
    //   //           url: '/pages/login/login',
    //   //         })
    //   //       } else if (res.cancel) {
    //   //       }
    //   //     }
    //   //   })

    //   //   return false
    //   // }
    // }
  },
  //获取购物车数量
  get_shopnum() {
    let that = this
    let url = a.interface.shopcarNum
    a.post(url, {}).then((res) => {
      if (res.msg > 0) {
        wx.showTabBarRedDot({
          index: 2,
          success: function (red) {
            wx.setTabBarBadge({
              index: 2,
              text: res.msg.toString(),
            })
          }
        })
      } else {
        wx.hideTabBarRedDot({
          index: 2,
        })
      }
    })
  },

  //获取订单各状态数量
  get_order() {
    let that = this
    let url = a.interface.orderlist
    a.post(url, {}).then((res) => {
      that.setData({
        order: res.msg
      })
    })
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function() {

  },

  getmessagelist() {
    let that = this
    let url = '/information/get_all';
    let data = {
      page: 1,
      pageNum: 10,

    }
    a.post(url, data, "POST").then((r) => {
      // console.log(r)
      // that.setData({
      //   messagelist: that.data.messagelist.concat(r.msg)
      // })

      let newlist = [];
      r.msg.forEach(function (value, index, array) {
        console.log(newlist)
        if (value.status == 1) {
          newlist.push(value)
        }
      })

      console.log('77889944556', newlist)
      if (newlist.length != 0) {
        wx.showTabBarRedDot({
          index: 1,
          success: function (red) {

            wx.setTabBarBadge({
              index: 1,
              text: newlist.length.toString(),
            })
          }
        })
      }


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

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

    t.getInfoFun()
     t.getnewwuliu()
    // t.get_shopnum()
    // t.get_order()
    // t.getmessagelist()
    //获取个人信息 自己写的

    // t.getInfoFun()
    // && wx.getStorageSync("login") == 1
    if (wx.getStorageSync("token")) {
      t.setData({
        no_login: false
      })
      t.getInfoFun()
      
    } else {
      t.setData({
        no_login: true
      })
    }
  },

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

  },

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

  },

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

  },

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

  },

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

  }
})