wupengfei
5 天以前 4533218fcd5a0bd03a36624de1fb4f21efff9f40
apps/cMiniApp/src/hooks/router.ts
@@ -8,8 +8,9 @@
  const switchTab = (option: Taro.switchTab.Option) => {
    const index = TabBarPageRouterList.findIndex((x) => option.url.includes(x));
    console.log('index: ', index);
    systemStore.setTabIndex(index);
    Taro.switchTab(option);
    Taro.switchTab(option).then(() => {
      systemStore.setTabIndex(index);
    });
  };
  return switchTab;
}