index.js 326 B

1234567891011121314151617181920212223
  1. import {
  2. imgServerUrl
  3. } from '../../config/config.js'
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. imgServerUrl: imgServerUrl
  10. },
  11. /**
  12. * 生命周期函数--监听页面加载
  13. */
  14. onLoad: function (options) {
  15. this.setData({
  16. addressList: wx.getStorageSync('addressList'),
  17. })
  18. },
  19. })