home.js 534 B

123456789101112131415161718192021222324
  1. const app = getApp();
  2. Page({
  3. data: {
  4. StatusBar: app.globalData.StatusBar,
  5. CustomBar: app.globalData.CustomBar,
  6. list: [{
  7. title: '索引列表',
  8. img: 'https://image.weilanwl.com/color2.0/plugin/sylb2244.jpg',
  9. url: '../indexes/indexes'
  10. },
  11. {
  12. title: '微动画',
  13. img: 'https://image.weilanwl.com/color2.0/plugin/wdh2236.jpg',
  14. url: '../animation/animation'
  15. }
  16. ]
  17. },
  18. toChild(e) {
  19. wx.navigateTo({
  20. url: e.currentTarget.dataset.url
  21. })
  22. },
  23. });