diff --git a/pages/family/family.vue b/pages/family/family.vue index 80f7309..77e7ea7 100755 --- a/pages/family/family.vue +++ b/pages/family/family.vue @@ -123,7 +123,7 @@ let _that = this; context.onLoad(options); context.getOwner(function(_owner) { - _that.ownerId = _owner.memberId; + _that.ownerId = _owner.ownerId; _that.communityId = _owner.communityId; }); }, diff --git a/pages/family/familyList.vue b/pages/family/familyList.vue index d6d29de..f817f4e 100755 --- a/pages/family/familyList.vue +++ b/pages/family/familyList.vue @@ -117,7 +117,7 @@ that.owners = []; context.getOwner(function(_owner) { that.communityId = _owner.communityId; - that.ownerId = _owner.memberId; + that.ownerId = _owner.ownerId; that.ownerTypeCd = _owner.ownerTypeCd; that.getTable(1); });