# isConnectGatewayWireless ^6.8
网关:手机连接的热点是否当前网关的热点
# 请求参数
Prop | Type | Default | Comment |
---|---|---|---|
applianceCode | String | N/A | 当前网关ID |
# 接口调用示例
const params = {
applianceCode: '123232322', //当前网关ID
}
this.$bridge
.isConnectGatewayWireless(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 | Default | Description |
---|---|---|---|
status | Number | N/A | 1:是网关热点,0:非网关热点 |
- 失败时返回