优化添加家庭成员不管

This commit is contained in:
java110 2023-08-25 11:59:51 +08:00
parent f32675fa20
commit 6919618998
2 changed files with 2 additions and 2 deletions

View File

@ -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;
});
},

View File

@ -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);
});