1 页面组件标签
```
navigator
```
2 保留当前页面跳转
```
uni.navigateTo
```
3 关闭当前页面跳转
```
uni.redirectTo
```
4 关闭所有页面跳转
```
uni.reLaunch
```
5 跳转到 tabBar 页面,并关闭其他所有非 tabBar 页面。
```
uni.switchTab
```
6 关闭当前页面,返回上一页面或多级页面。
可通过`getCurrentPages()`获取当前的页面栈,决定需要返回几层。
```
uni.navigateBack
```