物业费现金账户

This commit is contained in:
clefer 2023-06-12 18:18:46 +08:00
parent 4244f7d436
commit 3617941419

View File

@ -24,6 +24,7 @@
</template>
<script>
import context from '../../lib/java110/Java110Context.js';
import {
queryOwnerAccount
} from '../../api/user/userApi.js'
@ -87,12 +88,20 @@
},
_listOwnerAccount: function(_feeId, _communityId) {
// 2023.6.12
let _that = this;
context.getOwner(function(_ownerInfo) {
if (_ownerInfo) {
if(!_that.communityId){
_that.communityId = _ownerInfo.communityId
}
queryOwnerAccount({
page: 1,
row: 30,
feeId: _feeId,
communityId: _communityId
row: 20,
idCard: _ownerInfo.idCard,
link: _ownerInfo.link,
communityId: _communityId,
acctType:'2003'
}).then((data) => {
if (!data) {
_that.accounts = [];
@ -100,6 +109,21 @@
}
_that.accounts = data;
})
}
});
// let _that = this;
// queryOwnerAccount({
// page: 1,
// row: 30,
// feeId: _feeId,
// communityId: _communityId
// }).then((data) => {
// if(!data){
// _that.accounts = [];
// return;
// }
// _that.accounts = data;
// })
},
_viewAccountDetail: function(_account) {