custom-tab-bar.js 847 字节
Component({
  data: {
    selected: 0,
    color: "#7A7E83",
    selectedColor: "#FCB952",
    list: [{
      pagePath: "/pages/homepage/homepage",
      iconPath: "/img/index.png",
      selectedIconPath: "/img/indexactive.png",
      text: "首页"
		}, 
		{
      pagePath: "",
      iconPath: "/img/kefu.png",
      selectedIconPath: "/img/kefu.png",
      text: "美味君"
    },
		{
      pagePath: "/pages/usecenter/usecenter",
      iconPath: "/img/person.png",
      selectedIconPath: "/img/personactive.png",
      text: "我的"
    }]
  },
  properties: {
    selected: {
      type: Number, // 接收父组件传过来的值
      value: ''
    }
  },
  attached() {
  },
  methods: {
    switchTab(e) {
			console.log(e)
      const data = e.currentTarget.dataset
      const url = data.path
      wx.switchTab({url})
    }
  }
})