Component({ data: { selected: 0, color: "#6e6d6b", selectedColor: "#e64340", list: [{ "pagePath": "/pages/index/index", "iconPath": "/images/nav/home-off.png", "selectedIconPath": "/images/nav/home-on.png", "text": "首页" }, { "pagePath": "/pages/resource/index", "iconPath": "/images/nav/fl-off.png", "selectedIconPath": "/images/nav/fl-on.png", "text": "会务资源" }, { "pagePath": "/pages/order/index", "iconPath": "/images/nav/cart-off.png", "selectedIconPath": "/images/nav/cart-on.png", "text": "订单" }, { "pagePath": "/pages/my/index", "iconPath": "/images/nav/my-off.png", "selectedIconPath": "/images/nav/my-on.png", "text": "我的" } ] }, attached() {}, methods: { switchTab(e) { const { index, path } = e.currentTarget.dataset wx.switchTab({ url: path }) } } })