receiverAddress.js 3.1 KB
import {
  request
} from "../../request/index.js"
const a = getApp()
Page({
  data: {
    imagesUrl: a.globalData.baseUrl,
    EditorList: [],
    id: '',
    msg: '',
    pathed: '', // 接收过来路径
    StoreID: '', //商品id
    num: '', // 购买数量
    address_id: '',
    gui_arr: [],
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    //  console.log(options);
    this.setData({
      pathed: options.pathed,
      StoreID: options.id,
      num: options.num,
      order_no: options.order_no,
      gui_arr: options.gui_arr

    })
  },

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

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    this.getEditorList()
  },
  async getEditorList() {
    let that = this
    const {
      data: {
        data
      }
    } = await request({
      url: 'api/address/addressList',
      method: 'GET'
    })
    //  console.log(data);
    that.setData({
      EditorList: data
    })

  },
  changedRed(e) {
    //  console.log(e);
    let that = this
    let a = e.currentTarget.dataset.id
    let index = e.currentTarget.dataset.index;
    if (that.data.EditorList[index].is_mo == 0) {
      that.data.EditorList[index].is_mo = 1
    } else {
      that.data.EditorList[index].is_mo = 0
    }
    that.setData({
      EditorList: that.data.EditorList,
      id: a,
      address_id: a
    })
    that.setmoren()
  },
  // 新增收货地址
  addressContent() {
    wx.navigateTo({
      url: "/pages/receiptAddress/receiptAddress"
    })
  },
  setmoren(e) {
    //  console.log(e);

    let pages = getCurrentPages() //获取加载的页面
    let currentPage = pages[pages.length - 2] //获取当前页面的对象
    let obj = currentPage.data.address;
    obj.address = e.currentTarget.dataset.area;
    obj.address2 = e.currentTarget.dataset.address;
    obj.name = e.currentTarget.dataset.name;
    obj.phone = e.currentTarget.dataset.phone;
    obj.id = e.currentTarget.dataset.id;
    currentPage.setData({
      address: obj,
      address_id: e.currentTarget.dataset.id
    })
    console.log(obj,e.currentTarget.dataset.id,'发送的地址数据')
    wx.navigateBack()
  },
  popSuccessTest() { // 消息提示
    wx.showToast({
      title: this.data.msg,
      icon: '', //默认值是success,就算没有icon这个值,就算有其他值最终也显示success
      duration: 2000, //停留时间
    })
  },
  // 编辑
  goEditor(e) {
    let id = e.currentTarget.dataset.id
    wx.navigateTo({
      url: "/pages/goToEditor/goToEditor?id=" + id
    })
  },
  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {

  },

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

  },

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

  },

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

  },

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

  }
})