mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-23 21:36:38 +08:00
物业费现金账户
This commit is contained in:
parent
4244f7d436
commit
3617941419
@ -24,6 +24,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import context from '../../lib/java110/Java110Context.js';
|
||||
import {
|
||||
queryOwnerAccount
|
||||
} from '../../api/user/userApi.js'
|
||||
@ -87,19 +88,42 @@
|
||||
},
|
||||
|
||||
_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){
|
||||
if (!data) {
|
||||
_that.accounts = [];
|
||||
return;
|
||||
}
|
||||
_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) {
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user