# hideNavigationBar ^7.8
是否隐藏导航条
# 请求参数
Prop | Type | Required | Default | Comment |
---|---|---|---|---|
hide | Number | Y | N/A | 0-显示,1-隐藏 |
# 接口调用示例
const params = {
hide: 1
}
this.$bridge
.hideNavigationBar(params)
.then(res => {
this.$alert(res)
})
.catch(err => {
this.$toast(err)
})
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
Prop | Type | Required | Comment |
---|---|---|---|
code | Number | Y | 返回状态, 0:成功,1:失败, -1001:缺少参数hide |
msg | String | Y | 返回信息 |
# 接口返回示例
// 成功返回
{
code: 0,
msg: '成功'
}
// 失败返回
{
code: -1001,
msg: '缺少参数hide'
}
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10