# goToMeijuPage ^5.8.0
| props | comment | 
|---|---|
| type | 跳转类型。 跳转原生页为jumpNative 跳转weex设备插件页为jumpWeexPlugin 跳转老h5插件页为jumpH5Plugin 跳转weex为jumpweex(常用跳转业务插件) 跳转webview为jumpWebView 跳转dolphin webview为 jumpWebViewNew 跳转dolphin weex业务插件和H5插件为 jumpHybridModule  | 
| param | 跳转webview,参数有url等 跳转原生页,参数有pageName等 跳转weex,参数有url等 跳转插件页,参数有deviceId等 需不要带导航栏字段;needNavigation。1为需要 0为不需要 需不需要带底部导航 如needTabbar  | 
# 详细的路由跳转示例如下链接
# 接口调用示例
// 第一种方式原生
const params = {
    "url": "meiju://com.midea.meiju/main?type=jumpNative&pageName=login&needNavi=1"
}
// 第二种方式
const params = {
  type: 'jumpNative',
  param: {
    pageName: 'kugoumusic/bind',
    deviceId: 'xxxxxxx',
    nickname: 'x',
    pic: 'xxxxxxx',
    deviceNumber: '5',
    needNavi: '1',
  },
}
this.$bridge
  .goToMeijuPage(params)
  .then(res => {
    this.$alert(res)
  })
  .catch(err => {
    this.$toast(err)
  })
 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25