1234567891011121314151617181920212223242526272829303132333435 |
- // components/tabbar/index.js
- const app = getApp()
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- tabbarlist:{
- value:[],
- type:Array
- }
- },
- /**
- * 组件的初始数据
- */
- data: {
- },
- /**
- * 组件的方法列表
- */
- methods: {
- onChange (e) {
- let path = e.detail.value
- let page = getCurrentPages()[getCurrentPages().length - 1]
- if (path.includes(page.route)) return false
- wx.redirectTo({
- url: path,
- })
- }
- }
- })
|