deleteHome ^7.9
删除家庭
请求参数
Prop | Type | Default | Comment |
homeId | String | N/A | 家庭id 必填 |
接口调用示例
const params = {
"homeId": "家庭id 必填"
}
this.$bridge
.deleteHome(params)
.then(res => {
this.$alert(res)
})
.catch(err => {
this.$toast(err)
})
1
2
3
4
5
6
7
8
9
10
11
12
接口返回示例
{
"code": "0",
"msg": "删除家庭成功"
}
1
2
3
4
5
6