优化小区名称不显示bug

This commit is contained in:
63194756 2024-03-17 10:06:43 +00:00
parent e16c0b1f66
commit 78489934c9

View File

@ -73,6 +73,7 @@
<script> <script>
import context from '../../lib/java110/Java110Context.js'; import context from '../../lib/java110/Java110Context.js';
import {getCommunityName} from '@/api/community/communityApi.js'
const constant = context.constant; const constant = context.constant;
export default { export default {
data() { data() {
@ -94,7 +95,7 @@
let _active = _ownerInfo.state == '10000' ? 1 : 2; let _active = _ownerInfo.state == '10000' ? 1 : 2;
_that.communityId= _ownerInfo.communityId; _that.communityId= _ownerInfo.communityId;
_that.communityName= _ownerInfo.communityName; _that.communityName= getCommunityName();
_that._loadAdmin(); _that._loadAdmin();
} }
}); });