inviteToHome 邀请家庭成员

inviteToHome ^7.9

邀请家庭成员

#请求参数

Prop Type Default Comment
homeId String N/A 家庭id 必填
loginAccount String N/A 被邀请的用户账号 必填
stamp String N/A 图形验证码 非必填

#接口调用示例

const params = {
    "homeId": "2232323",
    "loginAccount": "tt",
    "stamp": ""
}
this.$bridge
  .inviteToHome(params)
  .then(res => {
    this.$alert(res)
  })
  .catch(err => {
    this.$toast(err)
  })

#接口返回示例

{
    "code": "0",
    "data": ""
}
posted on 2024-12-19 09:28  AtlasLapetos  阅读(12)  评论(0)    收藏  举报