voyages.js 370 B

1234567891011121314151617
  1. // pages/voyages/voyages.js
  2. Page({
  3. data: {
  4. },
  5. onLoad() {
  6. wx.removeStorageSync('voyageDetailId')
  7. },
  8. onShow: function (options) {
  9. if (wx.getStorageSync('isClient')) return
  10. if (wx.getStorageSync('voyageDetailId')) return
  11. wx.removeStorageSync('voyageDetailId')
  12. const child = this.selectComponent('.voyages');
  13. child.getVoyageList()
  14. },
  15. })