index.ts 323 B

123456789101112131415
  1. import { router } from "../router";
  2. import { t } from "../locale";
  3. // 更新标题
  4. export function updateTitle() {
  5. const style = router.route()?.style;
  6. if (style != null) {
  7. if (style.navigationBarTitleText != null) {
  8. uni.setNavigationBarTitle({
  9. title: t(style.navigationBarTitleText as string)
  10. });
  11. }
  12. }
  13. }