index.js 518 B

1234567891011121314151617181920212223242526272829303132333435
  1. // components/tabbar/index.js
  2. const app = getApp()
  3. Component({
  4. /**
  5. * 组件的属性列表
  6. */
  7. properties: {
  8. tabbarlist:{
  9. value:[],
  10. type:Array
  11. }
  12. },
  13. /**
  14. * 组件的初始数据
  15. */
  16. data: {
  17. },
  18. /**
  19. * 组件的方法列表
  20. */
  21. methods: {
  22. onChange (e) {
  23. let path = e.detail.value
  24. let page = getCurrentPages()[getCurrentPages().length - 1]
  25. if (path.includes(page.route)) return false
  26. wx.redirectTo({
  27. url: path,
  28. })
  29. }
  30. }
  31. })