Component({ options: { addGlobalClass: true, }, data: { selected: 0, list: [{ pagePath: "/pages/basics/home/home", iconPath: "/images/tabbar/basics.png", selectedIconPath: "/images/tabbar/basics_cur.png", text: "基础" }, { pagePath: "/pages/component/home/home", iconPath: "/images/tabbar/component.png", selectedIconPath: "/images/tabbar/component_cur.png", text: "组件" }, { pagePath: "/pages/plugin/home/home", iconPath: "/images/tabbar/plugin.png", selectedIconPath: "/images/tabbar/plugin_cur.png", text: "扩展" }, { pagePath: "/pages/about/home/home", iconPath: "/images/tabbar/about.png", selectedIconPath: "/images/tabbar/about_cur.png", text: "关于" } ] }, methods: { switchTab(e) { const url = e.currentTarget.dataset.path wx.switchTab({ url }) } }, pageLifetimes: { }, })