wupengfei
7 天以前 a6a3a9778a473c94b3bb5077f3f5c727edcee2cc
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;
}