addr_1.js 2.6 KB
const app = getApp();

Page({

  /**
   * 页面的初始数据
   */
  data: {
    orderlist: [],
    address_id: '',
    status: 0,
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.getaddresslist()

    // this.setData({
    //   address_id: options.id
    // })

  },

  getaddresslist() {

    let that = this;
    let url = 'user/index/addressList';
    let params = {

    }
    let header = {
      "XX-Token": wx.getStorageSync('token'),
      "XX-Device-Type": 'wxapp'
    }
    app.post(url, params, header).then((res) => {
      console.log(res);
      // 列表值
      that.setData({
        orderlist: res.data.list
      })

      console.log(that.data.orderlist)



    }).catch((err) => {

    })
  },


  toDelete(e) {
    let that = this;
    console.log(e)
    let id = e.currentTarget.dataset.id;
    let url = 'user/index/deleteAddress';

    let params = {
      address_id: id
    }
    let header = {
      "XX-Token": wx.getStorageSync('token'),
      "XX-Device-Type": 'wxapp'
    }
    app.post(url, params, header).then((res) => {
      console.log(res)
      // if (res == '') {
      //   wx.showToast({
      //     title: '删除成功',
      //     icon: 'none'
      //   })
      wx.showToast({
          title: '删除成功',
          icon: 'none'
        })
        setTimeout(function () {
          that.getaddresslist()
        }, 1000)
      
    


    }).catch((err) => {

    })
    // var delete_id = e.currentTarget.dataset.id
    this.setData({

    })
  },

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

  // 进入修改页面
  toModify(e) {
    // 传唯一id  唯一id内包含该用户所有信息
    let id = e.currentTarget.dataset.id
    // let status = e.currentTarget.dataset.status
    // console.log('状态位'+status).
    console.log('修改id为' + id)
    wx.navigateTo({
      url: '/pages/mine/addr_2/addr_2?id=' + id,
    })
  },
  onReady: function () {

  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})