Component({ data: { selected: 0, list: [ { pagePath: 'pages/tab-bar/medicine-box/index', text: 'į”ĩå­č¯įŽą', icon: '💊', }, { pagePath: 'pages/tab-bar/drug-wiki/index', text: 'č¯å“į™žį§‘', icon: '📖', }, { pagePath: 'pages/tab-bar/education/index', text: '惠教中åŋƒ', icon: '🎓', }, { pagePath: 'pages/tab-bar/profile/index', text: 'æˆ‘įš„', icon: '👤', }, ], }, methods: { switchTab(e: WechatMiniprogram.TouchEvent) { const { index, path } = e.currentTarget.dataset; wx.switchTab({ url: `/${path}` }); }, }, });