# updateHomeInfo ^7.9

更新家庭信息

# 请求参数

Prop Type Default Comment
homeId String N/A 家庭id 必填
name String N/A 家庭名称
des String N/A 描述
address String N/A 地址
coordinate String N/A 位置
areaid String N/A xxx
adCode String N/A

# 接口调用示例

const params = {
    "homeId": "家庭id 必填",
    "name": "家庭名称",
    "des": "描述",
    "address": "地址",
    "coordinate": "位置",
    "areaid": "xxx",
    "adCode": ""
}
this.$bridge
  .updateHomeInfo(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

# 接口返回示例

{
    "code": "0",
    "msg": "修改成功"
}


1
2
3
4
5
6
更新时间: 7/27/2021, 11:23:45 AM